diff options
author | Martin Pool <mbp@samba.org> | 2001-11-27 07:54:48 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-11-27 07:54:48 +0000 |
commit | 7c1b7890d36774133ede2756e687bd0c007cc3ae (patch) | |
tree | aa2a1a64dcb843dacad593ba0090e0664eb10782 /testsuite/rsync.fns | |
parent | dd0700b02550094a7e94d3533be3d16965114cea (diff) | |
download | rsync-7c1b7890d36774133ede2756e687bd0c007cc3ae.tar.gz |
Be a bit more verbose
Diffstat (limited to 'testsuite/rsync.fns')
-rw-r--r-- | testsuite/rsync.fns | 3 |
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 ) |