Added trac patch to fix subdir mkdir problem
git-svn-id: http://code.autistici.org/svn/backupninja/trunk@262
758a04ac-41e6-0310-8a23-
8373a73cc35d
do
repo=`dirname $repo`
- # Just make the $tmp dir, not $tmp/$repo
- ret=`mkdir -p $tmp 2>&1`
+ # Just make the parent directory for $tmp/$repo
+ parentdir=`dirname $tmp/$repo`
+ ret=`mkdir -p $parentdir 2>&1`
code=$?
if [ "$ret" ]; then
debug "$ret"
fi
if [ $code != 0 ]; then
- error "command failed mkdir -p $tmp"
+ error "command failed mkdir -p $parentdir"
fi
ret=`trac-admin $src/$repo hotcopy $tmp/$repo 2>&1`