1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-02 16:25:41 +00:00

corrected doItAll

This commit is contained in:
Stephen Gaito 2019-11-28 09:15:56 +00:00
parent 7f4f72fb05
commit 3de9280d0a
2 changed files with 25 additions and 16 deletions

View File

@ -3,7 +3,12 @@
# This bash script builds the complete pdf2htmlEX application LOCALLY
# (It does not create the AppImage or Docker images)
export UNATTENDED=--assume-yes
# Adjust the following two environment variables to suit your needs
#
export UNATTENDED="--assume-yes"
export MAKE_PARALLEL="-j $(nproc)"
./buildScripts/reportEnvs || { echo 'reportEnvs FAILED' ; exit 1 ; }
./buildScripts/getBuildTools || { echo 'getBuildTools FAILED' ; exit 1 ; }
@ -28,3 +33,5 @@ export UNATTENDED=--assume-yes
./buildScripts/createAppImage || { echo 'createAppImage FAILED' ; exit 1 ; }
./buildScripts/createDockerImage || { echo 'createDockerImage FAILED' ; exit 1 ; }
./buildScripts/uploadRelease || { echo 'uploadRelease FAILED' ; exit 1 ; }

View File

@ -9,8 +9,9 @@ echo " commit: [$TRAVIS_COMMIT]"
echo " build dir: [$TRAVIS_BUILD_DIR]"
echo " repo slug: [$TRAVIS_REPO_SLUG]"
echo "UploadTool env:"
echo " suffix: [$UPLOADTOOL_SUFFIX]"
echo "Build env:"
echo " unattended: [$UNATTENEDED]"
echo " make parallel: [$MAKE_PARALLEL]"
source ./buildScripts/versionEnvs
@ -24,4 +25,5 @@ echo "release env:"
echo " build time: [$BUILD_TIME]"
echo " docker from: [$DOCKER_FROM]"
echo " docker name: [$DOCKER_NAME]"
echo "appImage name: [$APPIMAGE_NAME]"
echo " appImage name: [$APPIMAGE_NAME]"
echo "uploadTool suffix: [$UPLOADTOOL_SUFFIX]"