summaryrefslogtreecommitdiff
path: root/bin/install
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2019-10-03 12:26:20 +0100
committerNick Thomas <nick@gitlab.com>2019-10-08 12:20:30 +0100
commit1a3e687f772047988b9bcaeb471d94d6f49a853e (patch)
tree329d7a0112bcc501e4065b0c5786be6f64d90432 /bin/install
parent9ba79e43395cf09e3c5904c541a011ea25b620f1 (diff)
downloadgitlab-shell-1a3e687f772047988b9bcaeb471d94d6f49a853e.tar.gz
Decouple bin/compile and bin/install from lib/
This commit duplicates a small amount of Ruby code that is run at build or install time. Over time, it would be nice to remove the dependency on Ruby for these steps, but the focus right now is on run-time. We'll be removing lib/* from gitlab-shell very soon, and these commands need to keep working when we do.
Diffstat (limited to 'bin/install')
-rwxr-xr-xbin/install8
1 files changed, 3 insertions, 5 deletions
diff --git a/bin/install b/bin/install
index e9c1654..d6e5357 100755
--- a/bin/install
+++ b/bin/install
@@ -1,10 +1,8 @@
#!/usr/bin/env ruby
-require_relative '../lib/gitlab_init'
-
-#
-# GitLab shell, invoked from ~/.ssh/authorized_keys
-#
+# Load ROOT_PATH and access the minimum necessary config file
+require_relative '../support/go_build'
+require_relative '../support/gitlab_config'
config = GitlabConfig.new
key_dir = File.dirname("#{config.auth_file}")