jobd/gc.sh: rename variable to avoid confusion
When processing forks of the project being gc'd, a variable named
`packs` is used to count the number of packs present in each fork
to determine whether or not the fork now `.needsgc`.
The variable name used is `packs`.
At first glance, this would seem to be very bad as the list of
primary packs is stored in the variable named `packs` and bad
things would happen if it gets stepped on before it's last needed.
However, the forks are processed in an implicit subshell courtesy
of a `|` and therefore stepping on the `packs` variable in that
subshell has no effect on the `packs` variable outside the subshell.
Nevertheless, change the name of the variable used in the subshell
to avoid confusion and avoid a surprise bug if at some point in the
future that code no longer runs in a subshell.
Signed-off-by: Kyle J. McKay <mackyle@gmail.com>