mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-21 20:50:07 +00:00
19 lines
337 B
Bash
Executable File
19 lines
337 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ev
|
|
|
|
# This shell script creates the pdf2htmlEX AppImage and Container Images
|
|
|
|
#################
|
|
# do the creation
|
|
|
|
./buildScripts/reportEnvs
|
|
|
|
./buildScripts/createAppImage
|
|
|
|
./buildScripts/createDebianPackage
|
|
|
|
if [ -x "$(which docker)" -o -x "$(which podman)" ]; then
|
|
./buildScripts/createContainerUbuntuImageFromDeb
|
|
fi
|