Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2020-10-01 10:28:54 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2020-10-23 14:54:18 +0300
commitb2fc0f7fd3f09e7d5624575fd4a01ef4702a060e (patch)
tree3f8124f020ca6277ed29297f6bce34fb926ce505 /_support
parent44bc0ce831e6fce004cc400c627cd155fe7aff68 (diff)
gitlab-shell: Remove vendored files
GitLab-Shell used to implement the Git hooks that performed authorization and authentication. These were ported to Go, and since 61dcdf969231954c06f16a6222a7540460f4b4f0 these are merged, meaning that the code this change removes isn't ever called. As such, we should remove it. Removing these files required updates to the Makefile as some make targets are no longer needed as the gitlab-shell tests aren't executed anymore.
Diffstat (limited to '_support')
-rwxr-xr-x_support/test-boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/_support/test-boot b/_support/test-boot
index 3f9f810fc..021ad7c04 100755
--- a/_support/test-boot
+++ b/_support/test-boot
@@ -17,7 +17,7 @@ def main(gitaly_dir)
Dir.mktmpdir do |dir|
Dir.chdir(dir)
- File.write(File.join("#{gitaly_dir}/ruby/gitlab-shell", '.gitlab_shell_secret'), 'test_gitlab_shell_token')
+ File.write(File.join("#{gitaly_dir}/ruby/git-hooks", '.gitlab_shell_secret'), 'test_gitlab_shell_token')
File.write('config.toml', <<~CONFIG
socket_path = "#{ADDR}"
@@ -31,7 +31,7 @@ def main(gitaly_dir)
dir = "#{gitaly_dir}/ruby"
[gitlab-shell]
- dir = "#{gitaly_dir}/ruby/gitlab-shell"
+ dir = "#{gitaly_dir}/ruby/git-hooks"
[gitlab]
url = 'http://gitlab_url'