Use `-n` instead of negating `-z`

This commit is contained in:
Tim Byrne 2016-04-08 17:30:18 -05:00
parent 1f2bd1f57b
commit 340f88bd52
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ function test_alt() {
else
#; running any passed through Git command should trigger auto-alt
run "${T_YADM_Y[@]}" status
if [ ! -z "$auto_alt" ] && [[ "$output" =~ Linking.+$link_name ]]; then
if [ -n "$auto_alt" ] && [[ "$output" =~ Linking.+$link_name ]]; then
echo "ERROR: Reporting of link should not happen"
return 1
fi