summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Luttringer <seblu@seblu.net>2013-03-02 05:21:09 +0100
committerPierre Schmitz <pierre@archlinux.de>2013-03-10 10:33:58 +0100
commitb807c51102685bc07f39216ecbff5570a250feff (patch)
tree118e5599cf067800843e46beef8a67c06131925e
parent280d5501b00945fdf4e8de13724ec22b87a41576 (diff)
makechrootpkg: Display uniform $copy in messages
Signed-off-by: Sébastien Luttringer <seblu@seblu.net> Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
-rw-r--r--makechrootpkg.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in
index 9021b3e..ed8ab88 100644
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
@@ -117,7 +117,7 @@ umask 0022
# Note this is the same FD number as in mkarchroot
exec 9>"$copydir.lock"
if ! flock -n 9; then
- stat_busy "Locking chroot copy '$copy'"
+ stat_busy "Locking chroot copy [$copy]"
flock 9
stat_done
fi
@@ -133,7 +133,7 @@ if [[ ! -d $copydir ]] || $clean_first; then
stat_done
fi
- stat_busy 'Creating clean working copy'
+ stat_busy "Creating clean working copy [$copy]"
use_rsync=false
if type -P btrfs >/dev/null; then
[[ -d $copydir ]] && btrfs subvolume delete "$copydir" &>/dev/null