2020-06-20 09:11:30 +00:00
|
|
|
#!/bin/sh
|
2019-11-29 09:57:32 +00:00
|
|
|
|
2020-06-02 11:58:27 +00:00
|
|
|
set -ev
|
|
|
|
|
2020-07-07 18:01:43 +00:00
|
|
|
# This shell script creates the pdf2htmlEX AppImage and Container Images
|
2019-11-29 09:57:32 +00:00
|
|
|
|
|
|
|
#################
|
|
|
|
# do the creation
|
|
|
|
|
2020-06-12 13:53:44 +00:00
|
|
|
./buildScripts/reportEnvs
|
2019-11-29 09:57:32 +00:00
|
|
|
|
2020-06-12 13:53:44 +00:00
|
|
|
./buildScripts/createAppImage
|
2019-11-29 09:57:32 +00:00
|
|
|
|
2020-06-12 13:53:44 +00:00
|
|
|
./buildScripts/createDebianPackage
|
|
|
|
|
2020-07-07 18:01:43 +00:00
|
|
|
if [ -x "$(which docker)" -o -x "$(which podman)" ]; then
|
|
|
|
./buildScripts/createContainerUbuntuImageFromDeb
|
2020-06-12 13:53:44 +00:00
|
|
|
fi
|