Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Liberate
backupninja
Commits
c557a403
Commit
c557a403
authored
19 years ago
by
micah
Browse files
Options
Downloads
Patches
Plain Diff
r193@um: micah | 2005-12-24 21:05:47 -0500
Added trac patch to fix subdir mkdir problem
parent
92d839bc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
handlers/trac
+4
-3
4 additions, 3 deletions
handlers/trac
with
4 additions
and
3 deletions
handlers/trac
+
4
−
3
View file @
c557a403
...
...
@@ -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
`
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment