aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2010-01-12 14:46:46 -0500
committerDave Reisner <d@falconindy.com>2010-01-12 14:46:46 -0500
commit039021424aff265d97aa8510af68905cc47f1bc3 (patch)
tree3d3e1ab84510634af2eacea5b96ebb7cd2e4f59f
parent4c7c89066f5925e0600d6d640843e5db7745455b (diff)
downloadsquashfu-039021424aff265d97aa8510af68905cc47f1bc3.tar.gz
Use full path of rsync to avoid conflict with any aliases
-rwxr-xr-xsquashfu2
1 files changed, 1 insertions, 1 deletions
diff --git a/squashfu b/squashfu
index 10e0e5c..d8aa821 100755
--- a/squashfu
+++ b/squashfu
@@ -93,7 +93,7 @@ call_rsync () {
# debug ": Includes: ${INCLUDES[@]}"
# debug ": Excludes: ${EXCLUDES[@]}"
debug "rsync ${RSYNC_OPTS[@]} ${INCLUDES[@]} ${EXCLUDES[@]} "$UNION_MOUNT""
- rsync ${RSYNC_OPTS[@]} ${INCLUDES[@]} ${EXCLUDES[@]} "$UNION_MOUNT"
+ /usr/bin/rsync ${RSYNC_OPTS[@]} ${INCLUDES[@]} ${EXCLUDES[@]} "$UNION_MOUNT"
return $?
}