archbuild: Fix a variable name mistake. ($copydir -> $copy)

It tried to lock `$copydir.lock`, which was the ONLY mention of $copydir in
the entire file.  Surely it meant `$copy.lock`; the line was probably
originally copy/pasted from makechrootpkg or similar, where $copydir is
used.
This commit is contained in:
Luke Shumaker 2014-05-10 22:22:04 -04:00 committed by Dave Reisner
parent 98841eb694
commit 6dce935b99
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ if ${clean_first} || [[ ! -d "${chroots}/${repo}-${arch}" ]]; then
[[ -d $copy ]] || continue
msg2 "Deleting chroot copy '$(basename "${copy}")'..."
lock 9 "$copydir.lock" "Locking chroot copy '$copy'"
lock 9 "$copy.lock" "Locking chroot copy '$copy'"
if [[ "$(stat -f -c %T "${copy}")" == btrfs ]]; then
{ type -P btrfs && btrfs subvolume delete "${copy}"; } &>/dev/null