Use -n
instead of negating -z
This commit is contained in:
parent
1f2bd1f57b
commit
340f88bd52
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ function test_alt() {
|
||||||
else
|
else
|
||||||
#; running any passed through Git command should trigger auto-alt
|
#; running any passed through Git command should trigger auto-alt
|
||||||
run "${T_YADM_Y[@]}" status
|
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"
|
echo "ERROR: Reporting of link should not happen"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue