diff options
author | Valery Sizov <valery@gitlab.com> | 2016-10-03 19:15:14 +0300 |
---|---|---|
committer | Valery Sizov <valery@gitlab.com> | 2016-10-05 11:42:25 +0300 |
commit | c0b473418296764764cb716686cd870e7018b242 (patch) | |
tree | 2ef6c9418ef1960f782a002bd8f1513b36efda46 /hooks/post-receive | |
parent | 0b4fd0af16555b2bdc28f6b18781d72226c5d56c (diff) | |
download | gitlab-shell-add_gl_id.tar.gz |
added GL_IDadd_gl_id
Diffstat (limited to 'hooks/post-receive')
-rwxr-xr-x | hooks/post-receive | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hooks/post-receive b/hooks/post-receive index b7bc85e..b84d0d1 100755 --- a/hooks/post-receive +++ b/hooks/post-receive @@ -11,7 +11,7 @@ require_relative '../lib/gitlab_custom_hook' require_relative '../lib/gitlab_post_receive' if GitlabPostReceive.new(repo_path, key_id, refs).exec && - GitlabCustomHook.new.post_receive(refs, repo_path) + GitlabCustomHook.new(key_id).post_receive(refs, repo_path) exit 0 else exit 1 |