mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
22 lines
310 B
Bash
Executable File
22 lines
310 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ev
|
|
|
|
# This shell script creates the pdf2htmlEX AppImage and Docker Images
|
|
|
|
#################
|
|
# do the creation
|
|
|
|
./buildScripts/reportEnvs
|
|
|
|
./buildScripts/createAppImage
|
|
|
|
./buildScripts/createDebianPackage
|
|
|
|
if [ -x "$(which docker)" ]; then
|
|
./buildScripts/createDockerUbuntuImageFromDeb
|
|
fi
|
|
|
|
|
|
|