Run shell scripts with `bash` and not with `sh`

This commit is contained in:
Wandmalfarbe 2021-02-02 23:18:49 +01:00
parent ac02de2aab
commit 4d2a946cd4
2 changed files with 2 additions and 2 deletions

View File

@ -59,4 +59,4 @@ before_install:
before_script:
- cd examples
script:
- sh build-examples.sh
- bash build-examples.sh

View File

@ -41,7 +41,7 @@ for f in *; do
echo "${Blue}building '$f'${Color_Off}"
cd "$f"
echo " - running pandoc build script"
sh "$PWD/build.sh"
bash "$PWD/build.sh"
echo " - generating preview"
pdftoppm -r 150 -png "document.pdf" > "preview.png"
echo ""