From: Micah Anderson Date: Sun, 25 Dec 2005 03:26:02 +0000 (+0000) Subject: r193@um: micah | 2005-12-24 21:05:47 -0500 X-Git-Tag: backupninja-0.9.2~37 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=c557a4037287ce827e4e2e200c925d893ba84a2e r193@um: micah | 2005-12-24 21:05:47 -0500 Added trac patch to fix subdir mkdir problem --- diff --git a/handlers/trac b/handlers/trac index d344082..1c1b464 100644 --- a/handlers/trac +++ b/handlers/trac @@ -14,14 +14,15 @@ for repo in `find . -name VERSION` 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`