File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 77.gitlab_shell_secret
88.idea
99/* .log *
10- /bin /check
11- /bin /gitlab-shell
12- /bin /gitlab-shell-authorized-keys-check
13- /bin /gitlab-shell-authorized-principals-check
14- /bin /gitlab-sshd
10+ /bin /*
1511/gl-code-quality-report.json
1612/go_build
1713/support /bin /golangci- *
Original file line number Diff line number Diff line change @@ -96,16 +96,18 @@ ${GOLANGCI_LINT_FILE}:
9696
9797setup : make_necessary_dirs bin/gitlab-shell
9898
99- make_necessary_dirs : _script_install
100- _script_install :
101- bin/install
99+ make_necessary_dirs :
100+ support/make_necessary_dirs
102101
103102compile : bin/gitlab-shell bin/gitlab-sshd
104103
105- bin/gitlab-shell : $(GO_SOURCES )
104+ bin :
105+ mkdir -p bin
106+
107+ bin/gitlab-shell : bin $(GO_SOURCES )
106108 go build $(GOBUILD_FLAGS ) -o $(CURDIR ) /bin ./cmd/...
107109
108- bin/gitlab-sshd : $(GO_SOURCES )
110+ bin/gitlab-sshd : bin $(GO_SOURCES )
109111 go build $(GOBUILD_FLAGS ) -o $(CURDIR ) /bin/gitlab-sshd ./cmd/gitlab-sshd
110112
111113check :
Original file line number Diff line number Diff line change 11#!/usr/bin/env ruby
22
33# Load ROOT_PATH and access the minimum necessary config file
4- require_relative '../support/ gitlab_config'
4+ require_relative 'gitlab_config'
55
66config = GitlabConfig . new
77key_dir = File . dirname ( "#{ config . auth_file } " )
You can’t perform that action at this time.
0 commit comments