mirror of
https://github.com/tests-always-included/mo.git
synced 2025-05-01 09:46:30 +02:00
More fixes if variables are not set and strict mode is enabled
This commit is contained in:
parent
1e91e414cc
commit
4f615a0faf
4
mo
4
mo
@ -841,9 +841,9 @@ moShow() {
|
||||
echo -n "$moJoined"
|
||||
else
|
||||
# shellcheck disable=SC2031
|
||||
if [[ -z "${MO_FAIL_ON_UNSET-}" ]] || moTestVarSet "$1"; then
|
||||
if moTestVarSet "$1"; then
|
||||
echo -n "${!1}"
|
||||
else
|
||||
elif [[ -n "${MO_FAIL_ON_UNSET-}" ]]; then
|
||||
echo "Env variable not set: $1" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user