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 3d156ed + 90418d8 commit df6ff94Copy full SHA for df6ff94
Makefile
@@ -101,11 +101,12 @@ _script_install:
101
bin/install
102
103
compile: bin/gitlab-shell bin/gitlab-sshd
104
+
105
bin/gitlab-shell: $(GO_SOURCES)
- GOBIN="$(CURDIR)/bin" go install $(GOBUILD_FLAGS) ./cmd/...
106
+ go build $(GOBUILD_FLAGS) -o $(CURDIR)/bin ./cmd/...
107
108
bin/gitlab-sshd: $(GO_SOURCES)
- GOBIN="$(CURDIR)/bin" go install $(GOBUILD_FLAGS) ./cmd/gitlab-sshd
109
+ go build $(GOBUILD_FLAGS) -o $(CURDIR)/bin/gitlab-sshd ./cmd/gitlab-sshd
110
111
check:
112
bin/check
0 commit comments