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

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Martinez <jmartinez@gitlab.com>2021-01-12 05:42:46 +0300
committerJaime Martinez <jmartinez@gitlab.com>2021-02-02 08:06:26 +0300
commitdd3499cd07e539c237b8f84a2cc918ed98c677fe (patch)
treedbf3c480bb82a8fe22f2b6757f29ccd5e7670c40 /Makefile.util.mk
parente7d71ae540f433eb8dbbfef64118674f7e76e473 (diff)
Ensure pages-root is abs
MkdirAll in jail so the full pages-root path is created
Diffstat (limited to 'Makefile.util.mk')
-rw-r--r--Makefile.util.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.util.mk b/Makefile.util.mk
index 4f190ea4..da29e0c8 100644
--- a/Makefile.util.mk
+++ b/Makefile.util.mk
@@ -17,7 +17,7 @@ race: .GOPATH/.ok gitlab-pages
CGO_ENABLED=1 go test -race $(if $V,-v) $(allpackages)
acceptance: .GOPATH/.ok gitlab-pages
- go test $(if $V,-v) ./test/acceptance 2>&1 | tee tests.out
+ go test $(if $V,-v) ./test/acceptance ${ARGS} 2>&1 | tee tests.out
bench: .GOPATH/.ok gitlab-pages
go test -bench=. -run=^$$ $(allpackages)