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
nexedi
gitlab-shell
Commits
4d1b2b88
Commit
4d1b2b88
authored
Sep 16, 2014
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Symlink the whole hooks directory
Conflicts: CHANGELOG lib/gitlab_projects.rb
parent
33c2bca5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
CHANGELOG
CHANGELOG
+1
-0
lib/gitlab_projects.rb
lib/gitlab_projects.rb
+7
-3
No files found.
CHANGELOG
View file @
4d1b2b88
v1.9.8
v1.9.8
- Ignore missing repositories in create-hooks
- Ignore missing repositories in create-hooks
- Symlink the whole hooks directory
v1.9.7
v1.9.7
- Increased test coverage
- Increased test coverage
...
...
lib/gitlab_projects.rb
View file @
4d1b2b88
...
@@ -5,6 +5,8 @@ require_relative 'gitlab_config'
...
@@ -5,6 +5,8 @@ require_relative 'gitlab_config'
require_relative
'gitlab_logger'
require_relative
'gitlab_logger'
class
GitlabProjects
class
GitlabProjects
GLOBAL_HOOKS_DIRECTORY
=
File
.
join
(
ROOT_PATH
,
'hooks'
)
# Project name is a directory name for repository with .git at the end
# Project name is a directory name for repository with .git at the end
# It may be namespaced or not. Like repo.git or gitlab/repo.git
# It may be namespaced or not. Like repo.git or gitlab/repo.git
attr_reader
:project_name
attr_reader
:project_name
...
@@ -18,9 +20,11 @@ class GitlabProjects
...
@@ -18,9 +20,11 @@ class GitlabProjects
attr_reader
:full_path
attr_reader
:full_path
def
self
.
create_hooks
(
path
)
def
self
.
create_hooks
(
path
)
hook
=
File
.
join
(
path
,
'hooks'
,
'update'
)
local_hooks_directory
=
File
.
join
(
path
,
'hooks'
)
File
.
delete
(
hook
)
if
File
.
exists?
(
hook
)
unless
File
.
realpath
(
local_hooks_directory
)
==
File
.
realpath
(
GLOBAL_HOOKS_DIRECTORY
)
File
.
symlink
(
File
.
join
(
ROOT_PATH
,
'hooks'
,
'update'
),
hook
)
FileUtils
.
mv
(
local_hooks_directory
,
"
#{
local_hooks_directory
}
.
#{
Time
.
now
.
to_i
}
"
)
FileUtils
.
ln_s
(
GLOBAL_HOOKS_DIRECTORY
,
local_hooks_directory
)
end
end
end
def
initialize
def
initialize
...
...
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