Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2018-10-16 13:42:39 +0300
committerJacob Vosmaer <jacob@gitlab.com>2018-10-16 13:42:39 +0300
commitc1aa5d38391d8092ca852bc3486397b3181a8741 (patch)
treee56ead0a3fb9ae69fc62653db1f5c7119566ca46 /Makefile
parent2ea8b8e0ff063151c0255db3577a25e854cae4d7 (diff)
Delete test repos during 'make clean'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d9423bc99..68954ed90 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,7 @@ MAKEGEN = $(BUILD_DIR)/makegen
# These variables are handed down to make in _build
export GOPATH := $(CURDIR)/$(BUILD_DIR)
export PATH := $(PATH):$(GOPATH)/bin
+export TEST_REPO_STORAGE_PATH := $(CURDIR)/internal/testhelper/testdata/data
all: build
@@ -82,4 +83,4 @@ _build/makegen: _support/makegen.go $(BUILD_DIR)/.ok
go build -o $@ _support/makegen.go
clean:
- rm -rf $(BUILD_DIR) .ruby-bundle
+ rm -rf $(BUILD_DIR) .ruby-bundle $(TEST_REPO_STORAGE_PATH)