more changes to better handle undef vars

This is only needed if we make undefined vars an error as proposed in
issue #4163 but it's a good idea anyway.
This commit is contained in:
Kurtis Rader
2017-07-03 10:16:31 -07:00
parent 4f345fdee7
commit 763063e741
4 changed files with 13 additions and 6 deletions

View File

@@ -24,7 +24,10 @@ end
set TERM xterm
set -e ITERM_PROFILE
source test_util.fish (status -f) $argv; or exit
set -q argv
or set argv
source test_util.fish (status -f) $argv
or exit
say -o cyan "Testing high level script functionality"