Skip to content

Commit eefc981

Browse files
committed
Do not remove gobuild during clean
1 parent cbc9dc4 commit eefc981

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ endif
111111
all: build
112112

113113
clean:
114-
rm -Rf $(BIN) $(BINDIR) $(GOBUILDDIR) $(ROOTDIR)/arangodb
114+
rm -Rf $(BIN) $(BINDIR) $(ROOTDIR)/arangodb
115115

116116
local:
117117
ifneq ("$(DOCKERCLI)", "")
@@ -212,6 +212,9 @@ run-tests-docker: docker _run-tests
212212
run-tests-local: export TEST_MODES=localprocess
213213
run-tests-local: _run-tests
214214

215+
$(GOBUILDDIR):
216+
@mkdir -p "$(GOBUILDDIR)"
217+
215218
## LINT
216219

217220
GOLANGCI_ENABLED=deadcode gocyclo golint varcheck structcheck maligned errcheck \

0 commit comments

Comments
 (0)