test: use "bash" for entrypoint.sh

Also double quote GITHUB_WORKSPACE because that could indeed by
anything.
This commit is contained in:
Christian Kellner 2020-09-17 14:02:27 +02:00 committed by Lars Karlitski
parent b44ceb19ef
commit 2e24a5506f

View file

@ -1,6 +1,6 @@
#!/bin/sh -l
#!/bin/bash -l
set -euo pipefail
cd $GITHUB_WORKSPACE
cd "$GITHUB_WORKSPACE"
/bin/bash -o errexit -c "$1"