summaryrefslogtreecommitdiff
path: root/bin/create-hooks
diff options
context:
space:
mode:
Diffstat (limited to 'bin/create-hooks')
-rwxr-xr-xbin/create-hooks14
1 files changed, 9 insertions, 5 deletions
diff --git a/bin/create-hooks b/bin/create-hooks
index 4efa650..241e10b 100755
--- a/bin/create-hooks
+++ b/bin/create-hooks
@@ -7,10 +7,14 @@
require_relative '../lib/gitlab_init'
require File.join(ROOT_PATH, 'lib', 'gitlab_projects')
-Dir["#{GitlabConfig.new.repos_path}/*/*.git"].each do |repo|
- begin
- GitlabProjects.create_hooks(repo)
- rescue Errno::ENOENT
- # The user must have deleted their repository. Ignore.
+repository_storage_paths = ARGV
+
+repository_storage_paths.each do |repo_path|
+ Dir["#{repo_path.chomp('/')}/*/*.git"].each do |repo|
+ begin
+ GitlabProjects.create_hooks(repo)
+ rescue Errno::ENOENT
+ # The user must have deleted their repository. Ignore.
+ end
end
end