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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-17 03:12:37 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-17 03:12:37 +0300
commit049fd8333a1c87144f43680f69f472de89bb7743 (patch)
treef04a0c0dc4aa142a46ac7544c9decc8af9083764 /tooling
parentf9e0126cad562c7199e26e84a1540df3bc849e55 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'tooling')
-rw-r--r--tooling/danger/project_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tooling/danger/project_helper.rb b/tooling/danger/project_helper.rb
index 606fe80baaa..5d338393f90 100644
--- a/tooling/danger/project_helper.rb
+++ b/tooling/danger/project_helper.rb
@@ -224,7 +224,7 @@ module Tooling
def ee?
# Support former project name for `dev` and support local Danger run
- %w[gitlab gitlab-ee].include?(ENV['CI_PROJECT_NAME']) || Dir.exist?(File.expand_path('../../../ee', __dir__))
+ %w[gitlab gitlab-ee].include?(ENV['CI_PROJECT_NAME']) || Dir.exist?(File.expand_path('../../ee', __dir__))
end
end
end