Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
30d63707
Commit
30d63707
authored
Dec 31, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add subdir support for rewrite-hooks script
parent
83924495
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
3 deletions
+16
-3
lib/support/rewrite-hooks.sh
lib/support/rewrite-hooks.sh
+16
-3
No files found.
lib/support/rewrite-hooks.sh
View file @
30d63707
...
...
@@ -11,9 +11,22 @@ do
continue
fi
project_hook
=
"
$src
/
$dir
/hooks/post-receive"
gitolite_hook
=
"/home/git/.gitolite/hooks/common/post-receive"
if
[[
"
$dir
"
=
~ ^.
*
.git
$
]]
then
project_hook
=
"
$src
/
$dir
/hooks/post-receive"
gitolite_hook
=
"/home/git/.gitolite/hooks/common/post-receive"
ln
-s
-f
$gitolite_hook
$project_hook
else
for
subdir
in
`
ls
"
$src
/
$dir
/"
`
do
if
[
-d
"
$src
/
$dir
/
$subdir
"
]
&&
[[
"
$subdir
"
=
~ ^.
*
.git
$
]]
;
then
project_hook
=
"
$src
/
$dir
/
$subdir
/hooks/post-receive"
gitolite_hook
=
"/home/git/.gitolite/hooks/common/post-receive"
ln
-s
-f
$gitolite_hook
$project_hook
ln
-s
-f
$gitolite_hook
$project_hook
fi
done
fi
fi
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment