Fix GITHUB env check

This commit is contained in:
Gregory Schier 2019-10-17 16:17:39 -04:00
parent b0e9edea9d
commit 736e367d7b
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
# Fail on any errors
set -e
if [[ -z "$GITHUB_WORKSPACE" ]]; then
if [ -z "$GITHUB_WORKSPACE" ]; then
echo "Set the GITHUB_WORKSPACE env variable."
exit 1
fi

View File

@ -3,7 +3,7 @@
# Fail on any errors
set -e
if [[ -z "$GITHUB_WORKSPACE" ]]; then
if [ -z "$GITHUB_WORKSPACE" ]; then
echo "Set the GITHUB_WORKSPACE env variable."
exit 1
fi