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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2017-03-16 13:32:03 +0300
committerLin Jen-Shin <godfat@godfat.org>2017-03-16 13:38:13 +0300
commit3fa67889122c9969fdc7c3eef0ab0537478136fe (patch)
treeabc944de68cdec0b98cdd2369ec4597f62da1450 /lib
parent09924098d836909811ce96bb219823676d0a92f8 (diff)
Merge branch 'zj-rename-ci-vars' into 'master'
Futher rename the CI variables See merge request !9851
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/gitlab/dev.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/dev.rake b/lib/tasks/gitlab/dev.rake
index 7db0779def8..7ccda04a35f 100644
--- a/lib/tasks/gitlab/dev.rake
+++ b/lib/tasks/gitlab/dev.rake
@@ -4,7 +4,7 @@ namespace :gitlab do
task :ee_compat_check, [:branch] => :environment do |_, args|
opts =
if ENV['CI']
- { branch: ENV['CI_BUILD_REF_NAME'] }
+ { branch: ENV['CI_COMMIT_REF_NAME'] }
else
unless args[:branch]
puts "Must specify a branch as an argument".color(:red)