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

Changed files
+4 -2
maintainers
+4 -2
maintainers/scripts/rebuild-amount.sh
··· 81 81 # could eat too much memory for a standard 4GiB machine. 82 82 local -a list 83 83 for i in 1 2; do 84 - local l="$($MKTEMP)" 84 + local l 85 + l="$($MKTEMP)" 85 86 list[$i]="$l" 86 87 toRemove+=("$l") 87 88 88 - local expr="$($MKTEMP)" 89 + local expr 90 + expr="$($MKTEMP)" 89 91 toRemove+=("$expr") 90 92 nixexpr "${!i}" > "$expr" 91 93