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/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/secpick14
1 files changed, 2 insertions, 12 deletions
diff --git a/bin/secpick b/bin/secpick
index a68dabc8c47..4d056ceecaf 100755
--- a/bin/secpick
+++ b/bin/secpick
@@ -21,10 +21,6 @@ module Secpick
@options = self.class.options
end
- def ee?
- File.exist?(File.expand_path('../ee/app/models/license.rb', __dir__))
- end
-
def dry_run?
@options[:try] == true
end
@@ -40,9 +36,7 @@ module Secpick
end
def stable_branch
- "#{@options[:version]}-#{STABLE_SUFFIX}".tap do |name|
- name << "-ee" if ee?
- end.freeze
+ "#{@options[:version]}-#{STABLE_SUFFIX}-ee".freeze
end
def git_commands
@@ -64,11 +58,7 @@ module Secpick
end
def new_mr_url
- if ee?
- SECURITY_MR_URL
- else
- SECURITY_MR_URL.sub('/gitlab/', '/gitlab-foss/')
- end
+ SECURITY_MR_URL
end
def create!