diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-06-08 17:24:49 -0600 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-06-08 17:24:49 -0600 |
commit | 5a8f60343ea272cddc5b06c1de6d4d8f62bc902a (patch) | |
tree | 116bb093721a1832ade1c20ce71ad6cd55a29fe0 | |
parent | 9fc855b9c4af0e372fa50e1da1ec26d4f2fc5661 (diff) |
makechrootpkg.sh: fix message when deleting a copy
-rw-r--r-- | src/devtools/lib/makechrootpkg.sh.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devtools/lib/makechrootpkg.sh.patch b/src/devtools/lib/makechrootpkg.sh.patch index e1921d7..505b96a 100644 --- a/src/devtools/lib/makechrootpkg.sh.patch +++ b/src/devtools/lib/makechrootpkg.sh.patch @@ -224,7 +224,7 @@ +# Usage: chroot_delete $copydir +chroot_delete() { + local chroottype=$(stat -f -c %T "$copydir") -+ stat_busy "Removing chroot copy [$copy]" ++ stat_busy "Removing chroot copy [$copydir]" if [[ "$chroottype" == btrfs ]]; then btrfs subvolume delete "$copydir" >/dev/null || die "Unable to delete subvolume $copydir" |