Commit 33c2bca5 authored by Jacob Vosmaer's avatar Jacob Vosmaer

Merge branch 'rescue_in_create_hooks' into 'version-1-9'

1.9.8: Ignore missing repositories in create-hooks

See merge request !43
parents 91753e93 06cc5db6
v1.9.8
- Ignore missing repositories in create-hooks
v1.9.7
- Increased test coverage
- By default use direct unicorn connection (localhost:8080)
......
......@@ -8,5 +8,9 @@ require_relative '../lib/gitlab_init'
require File.join(ROOT_PATH, 'lib', 'gitlab_projects')
Dir["#{GitlabConfig.new.repos_path}/*/*.git"].each do |repo|
GitlabProjects.create_hooks(repo)
begin
GitlabProjects.create_hooks(repo)
rescue Errno::ENOENT
# The user must have deleted their repository. Ignore.
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment