DEV: Tweak plugin rake task console message

Show "Allowing write to all repos!" message only once.
This commit is contained in:
Penar Musaraj 2019-07-30 09:53:56 -04:00
parent 7ebb3503a3
commit a1fb718340
1 changed files with 2 additions and 1 deletions

View File

@ -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