mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-20 14:17:29 -04:00
Fix GITHUB env check
This commit is contained in:
2
.github/actions/build-linux/entrypoint.sh
vendored
2
.github/actions/build-linux/entrypoint.sh
vendored
@@ -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
|
||||
|
||||
2
.github/actions/build-snap/entrypoint.sh
vendored
2
.github/actions/build-snap/entrypoint.sh
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user