diff options
author | Nick Thomas <nick@gitlab.com> | 2018-01-14 01:48:35 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2018-01-14 01:48:35 +0000 |
commit | 6216ac186248c86e2bd0abd540232ea48bcdae22 (patch) | |
tree | 0b485a23b958d83d84015b73a7b54e6841712a7d | |
parent | a478813e1e0c792733ef4a7639d8191bd20a0261 (diff) | |
download | gitlab-shell-6216ac186248c86e2bd0abd540232ea48bcdae22.tar.gz |
Fix git push by removing a bad require in the pre-receive hook
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rwxr-xr-x | hooks/pre-receive | 1 |
3 files changed, 4 insertions, 2 deletions
@@ -1,3 +1,6 @@ +v6.0.1 + - Fix git push by removing a bad require in the pre-receive hook (!183) + v6.0.0 - Remove bin/gitlab_projects (!180) - Remove direct redis integration (!181) @@ -1 +1 @@ -6.0.0 +6.0.1 diff --git a/hooks/pre-receive b/hooks/pre-receive index d113697..58a628b 100755 --- a/hooks/pre-receive +++ b/hooks/pre-receive @@ -16,7 +16,6 @@ def increase_reference_counter(gl_repository, repo_path) end require_relative '../lib/gitlab_custom_hook' -require_relative '../lib/gitlab_reference_counter' require_relative '../lib/gitlab_access' require_relative '../lib/gitlab_net' |