summaryrefslogtreecommitdiff
path: root/testsuite/rsync.fns
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2001-11-27 07:54:48 +0000
committerMartin Pool <mbp@samba.org>2001-11-27 07:54:48 +0000
commit7c1b7890d36774133ede2756e687bd0c007cc3ae (patch)
treeaa2a1a64dcb843dacad593ba0090e0664eb10782 /testsuite/rsync.fns
parentdd0700b02550094a7e94d3533be3d16965114cea (diff)
downloadrsync-7c1b7890d36774133ede2756e687bd0c007cc3ae.tar.gz
Be a bit more verbose
Diffstat (limited to 'testsuite/rsync.fns')
-rw-r--r--testsuite/rsync.fns3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/rsync.fns b/testsuite/rsync.fns
index 48851ba3..b34faa4c 100644
--- a/testsuite/rsync.fns
+++ b/testsuite/rsync.fns
@@ -100,6 +100,7 @@ hands_setup() {
# Many machines do not have "mkdir -p", so we have to build up long paths.
# How boring.
makepath () {
+ echo " makepath $1"
p="$1"
(
# Absolut Unix.
@@ -111,7 +112,7 @@ makepath () {
# This will break if $1 contains a space.
for c in `echo $p | tr '/' ' '`
do
- [ -d "$c" ] || mkdir "$c" || return $?
+ [ -d "$c" ] || mkdir "$c" || { echo "failed to create $c" >&2; return $? }
cd "$c" || return $?
done
)