DEV: Tweak plugin rake task console message
Show "Allowing write to all repos!" message only once.
This commit is contained in:
parent
7ebb3503a3
commit
a1fb718340
|
@ -16,6 +16,8 @@ task 'plugin:install_all_official' do
|
|||
'discourse-perspective' => 'https://github.com/discourse/discourse-perspective-api'
|
||||
}
|
||||
|
||||
STDERR.puts "Allowing write to all repos!" if ENV['GIT_WRITE']
|
||||
|
||||
Plugin::Metadata::OFFICIAL_PLUGINS.each do |name|
|
||||
next if skip.include? name
|
||||
repo = map[name] || "https://github.com/discourse/#{name}"
|
||||
|
@ -28,7 +30,6 @@ task 'plugin:install_all_official' do
|
|||
end
|
||||
|
||||
if ENV['GIT_WRITE']
|
||||
STDERR.puts "Allowing write to all repos!"
|
||||
repo = repo.gsub("https://github.com/", "git@github.com:")
|
||||
repo += ".git"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue