summaryrefslogtreecommitdiff
path: root/hooks
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-09-01 19:08:29 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-09-01 19:08:29 +0300
commit7eb45672b77a0337e6568ef64cd84e13027f2d7b (patch)
treed9906352befc1a39cc7c779f2411488320675d29 /hooks
parentfc16836764e9712a8f8d5b8ff844ae7512e08a82 (diff)
downloadgitlab-shell-7eb45672b77a0337e6568ef64cd84e13027f2d7b.tar.gz
Remove update hook logic
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'hooks')
-rwxr-xr-xhooks/update13
1 files changed, 0 insertions, 13 deletions
diff --git a/hooks/update b/hooks/update
deleted file mode 100755
index 6f762e8..0000000
--- a/hooks/update
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env ruby
-
-# This file was placed here by GitLab. It makes sure that your pushed commits
-# will be processed properly.
-# You can add your own hooks to this file, but be careful when updating gitlab-shell!
-
-refname = ARGV[0]
-key_id = ENV['GL_ID']
-repo_path = Dir.pwd
-
-require_relative '../lib/gitlab_update'
-
-GitlabUpdate.new(repo_path, key_id, refname).exec