test: Don't error on unbound variable

We would get this error instead of a test error:

	test/util.sh: line 32: GITHUB_ACTION: unbound variable

This would happen when run locally.
This commit is contained in:
James Shubin
2023-12-11 23:59:45 -05:00
parent 8fcaa4abf2
commit 32b26a09c2
4 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
echo running "$0"
set -o errexit
set -o nounset
#set -o nounset
set -o pipefail
#ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" # dir!

View File

@@ -3,7 +3,7 @@
echo running "$0"
set -o errexit
set -o nounset
#set -o nounset
set -o pipefail
#ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" # dir!

View File

@@ -3,7 +3,7 @@
echo running "$0 $*"
set -o errexit
set -o nounset
#set -o nounset
set -o pipefail
#ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" # dir!

View File

@@ -5,7 +5,7 @@ exit 0 # i give up, we're skipping this entirely, help wanted to fix this
echo running "$0"
set -o errexit
set -o nounset
#set -o nounset
set -o pipefail
#ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" # dir!