test: use "bash" for entrypoint.sh
Also double quote GITHUB_WORKSPACE because that could indeed by anything.
This commit is contained in:
parent
b44ceb19ef
commit
2e24a5506f
1 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh -l
|
#!/bin/bash -l
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
cd $GITHUB_WORKSPACE
|
cd "$GITHUB_WORKSPACE"
|
||||||
|
|
||||||
/bin/bash -o errexit -c "$1"
|
/bin/bash -o errexit -c "$1"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue