From ba867efe015ec909babd6f370f3d5d1406a9697c Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 26 Feb 2025 15:42:15 +0100 Subject: [PATCH] fix(nixos-hosts): use arithmetic comparison in argument loop Replaces `[[ $# > 0 ]]` with `(( $# > 0 ))` for clarity and correctness. This ensures improved readability and adherence to best practices in Bash scripting. --- packages/nixos-hosts/nixos-hosts.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/nixos-hosts/nixos-hosts.sh b/packages/nixos-hosts/nixos-hosts.sh index 6532660..eb82c43 100644 --- a/packages/nixos-hosts/nixos-hosts.sh +++ b/packages/nixos-hosts/nixos-hosts.sh @@ -113,8 +113,7 @@ missing_opt_value() { log_fatal "Option $1 requires a value" } -# shellcheck disable=SC2154 -while [[ $# > 0 ]]; do +while (( $# > 0 )); do case "$1" in -h|--help) opt_help=true