1
0
Fork 0
mirror of synced 2024-07-26 18:11:09 -04:00

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

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