mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
19 lines
482 B
Bash
Executable File
19 lines
482 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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 ; }
|
|
|
|
|