We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 336c4a5 + c7c52ac commit 874ecd5Copy full SHA for 874ecd5
Makefile
@@ -24,7 +24,7 @@ GOBUILD_FLAGS := -ldflags "-X main.Version=$(VERSION_STRING) -X main.BuildTime=$
24
25
PREFIX ?= /usr/local
26
27
-build: bin/gitlab-shell
+build: compile
28
29
validate: verify test
30
@@ -58,10 +58,13 @@ setup: _script_install bin/gitlab-shell
58
_script_install:
59
bin/install
60
61
-compile: bin/gitlab-shell
+compile: bin/gitlab-shell bin/gitlab-sshd
62
bin/gitlab-shell: $(GO_SOURCES)
63
GOBIN="$(CURDIR)/bin" go install $(GOBUILD_FLAGS) ./cmd/...
64
65
+bin/gitlab-sshd: $(GO_SOURCES)
66
+ GOBIN="$(CURDIR)/bin" go install $(GOBUILD_FLAGS) ./cmd/gitlab-sshd
67
+
68
check:
69
bin/check
70
0 commit comments