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