Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
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
Kazuhiko Shiozaki
gitlab-shell
Commits
6f798f3d
Commit
6f798f3d
authored
Feb 07, 2013
by
Michael
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correcting regex match
Stops paths such as test_git, testgit etc.. being matched
parent
12b952b6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
support/rewrite-hooks.sh
support/rewrite-hooks.sh
+2
-2
No files found.
support/rewrite-hooks.sh
View file @
6f798f3d
...
...
@@ -11,7 +11,7 @@ do
continue
fi
if
[[
"
$dir
"
=
~ ^.
*
.git
$
]]
if
[[
"
$dir
"
=
~ ^.
*
\
.
git
$
]]
then
project_hook
=
"
$src
/
$dir
/hooks/post-receive"
gitolite_hook
=
"/home/git/gitlab-shell/hooks/post-receive"
...
...
@@ -23,7 +23,7 @@ do
else
for
subdir
in
`
ls
"
$src
/
$dir
/"
`
do
if
[
-d
"
$src
/
$dir
/
$subdir
"
]
&&
[[
"
$subdir
"
=
~ ^.
*
.git
$
]]
;
then
if
[
-d
"
$src
/
$dir
/
$subdir
"
]
&&
[[
"
$subdir
"
=
~ ^.
*
\
.
git
$
]]
;
then
project_hook
=
"
$src
/
$dir
/
$subdir
/hooks/post-receive"
gitolite_hook
=
"/home/git/gitlab-shell/hooks/post-receive"
ln
-s
-f
$gitolite_hook
$project_hook
...
...
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