mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
Fix GITHUB env check
This commit is contained in:
parent
b0e9edea9d
commit
736e367d7b
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
|
||||
|
Loading…
Reference in New Issue
Block a user