mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
15 lines
373 B
Bash
15 lines
373 B
Bash
#!/bin/bash
|
|
|
|
# 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 ; }
|
|
|
|
|