mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
24 lines
345 B
Bash
Executable File
24 lines
345 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ev
|
|
|
|
# This bash script creates the pdf2htmlEX AppImage and Docker Images
|
|
|
|
#################
|
|
# do the creation
|
|
|
|
./buildScripts/reportEnvs
|
|
|
|
./buildScripts/createAppImage
|
|
|
|
./buildScripts/createDebianPackage
|
|
|
|
./buildScripts/createDockerImageInside
|
|
|
|
if [ -x "$(which docker)" ]; then
|
|
./buildScripts/createDockerImageOutside
|
|
fi
|
|
|
|
|
|
|