Skip to content

Commit

Permalink
Disable agner support when KERL_DISABLE_AGNER is not empty
Browse files Browse the repository at this point in the history
Operator `-n` should be used instead of `-z` because it makes no sense to
disable Agner support only when KERL_DISABLE_AGNER is empty.
  • Loading branch information
scalone-cw committed May 9, 2024
1 parent 81b1e1e commit 46e28fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kerl
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ R12B-2 R12B-3 R12B-4 R12B-5 R13A R13B R13B01 R13B02 R13B03 R13B04"

agner_support()
{
if [ -z "$KERL_DISABLE_AGNER" ]; then
if [ -n "$KERL_DISABLE_AGNER" ]; then
return 1;
fi

Expand Down

0 comments on commit 46e28fb

Please sign in to comment.