1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 01:28:39 +00:00
pdf2htmlEX/buildScripts/createImages

19 lines
482 B
Plaintext
Raw Normal View History

#!/bin/bash
2020-06-02 11:58:27 +00:00
set -ev
# This bash script creates the pdf2htmlEX AppImage and Docker Images
#################
# do the creation
./buildScripts/reportEnvs || { echo 'reportEnvs FAILED' ; exit 1 ; }
./buildScripts/createAppImage || { echo 'createAppImage FAILED' ; exit 1 ; }
./buildScripts/createDockerImage || { echo 'createDockerImage FAILED' ; exit 1 ; }
./buildScripts/createDebianPackage || { echo 'createDebianPackage FAILED' ; exit 1 ; }