Skip to content
Snippets Groups Projects
Commit c557a403 authored by micah's avatar micah :speech_balloon:
Browse files

r193@um: micah | 2005-12-24 21:05:47 -0500

 Added trac patch to fix subdir mkdir problem
parent 92d839bc
No related branches found
No related tags found
No related merge requests found
......@@ -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`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment