treewide: Use (( "${NIX_DEBUG:-0}" >= 1) )) consistently
This commit is contained in:
@@ -109,7 +109,7 @@ fi
|
||||
#fi
|
||||
|
||||
# Optionally print debug info.
|
||||
if [ -n "${NIX_DEBUG:-}" ]; then
|
||||
if (( "${NIX_DEBUG:-0}" >= 1 )); then
|
||||
echo "extra flags before to @prog@:" >&2
|
||||
printf " %q\n" "${extraBefore[@]}" >&2
|
||||
echo "original flags to @prog@:" >&2
|
||||
|
||||
Reference in New Issue
Block a user