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-03-10 07:43:19 +0300
committerJaime Martinez <jmartinez@gitlab.com>2021-03-10 07:43:19 +0300
commitfb88c2aebad594dd405a340b4531c79161d312c3 (patch)
tree2c42880170174ad8fa38a1cb90c12a0d4ddffe25 /Makefile.util.mk
parent789cbeca36efcd135ec9ccb134d91d9487eeb034 (diff)
Do not export variables
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 2c139eba..91fa7ea5 100644
--- a/Makefile.util.mk
+++ b/Makefile.util.mk
@@ -61,7 +61,7 @@ junit-report: .GOPATH/.ok bin/go-junit-report
cat tests.out | ./bin/go-junit-report -set-exit-code > junit-test-report.xml
changelog:
- TOKEN='$(GITLAB_PRIVATE_TOKEN)' bash ./.gitlab/scripts/changelog.sh
+ TOKEN='$(GITLAB_PRIVATE_TOKEN)' VERSION='$(VERSION)' BRANCH='$(BRANCH)' bash ./.gitlab/scripts/changelog.sh
ifndef GITLAB_PRIVATE_TOKEN
$(error GITLAB_PRIVATE_TOKEN is undefined)
endif