From 258e99e37d0d40fb4f16c9d894ce500e5ba9e9a6 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 2 Dec 2012 21:31:26 -0500 Subject: librechroot: fix variable names in sync() --- src/chroot-tools/librechroot.gpl2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chroot-tools/librechroot.gpl2 b/src/chroot-tools/librechroot.gpl2 index 6ba361f..e9504ad 100755 --- a/src/chroot-tools/librechroot.gpl2 +++ b/src/chroot-tools/librechroot.gpl2 @@ -25,14 +25,14 @@ sync() { local use_rsync=false if type -P btrfs >/dev/null; then [[ -d $copydir ]] && btrfs subvolume delete "$copydir" &>/dev/null - btrfs subvolume snapshot "$chrootdir/root" "$copydir" &>/dev/null || use_rsync=true + btrfs subvolume snapshot "$rootdir" "$copydir" &>/dev/null || use_rsync=true else use_rsync=true fi if $use_rsync; then mkdir -p "$copydir" - rsync -a --delete -q -W -x "$CHROOTDIR/$CHROOT/root/" "$copydir" + rsync -a --delete -q -W -x "$rootdir" "$copydir" fi stat_done -- cgit v1.2.2