rebuild-amount: Fix 'SC2155 (warning): Declare and assign separately to avoid masking return values.'

This commit is contained in:
Victor Engmark
2024-06-20 14:37:25 +12:00
parent 7876d878cf
commit 893e0f3733
+4 -2
View File
@@ -81,11 +81,13 @@ newPkgs() {
# could eat too much memory for a standard 4GiB machine.
local -a list
for i in 1 2; do
local l="$($MKTEMP)"
local l
l="$($MKTEMP)"
list[$i]="$l"
toRemove+=("$l")
local expr="$($MKTEMP)"
local expr
expr="$($MKTEMP)"
toRemove+=("$expr")
nixexpr "${!i}" > "$expr"