DEV: Add an option to skip a theme update from the themes:install task. (#12905)

A theme can now specify `skip_update: true` in the yml config for
update allowing for the theme to be installed only if it does not already
exist.
This commit is contained in:
Jeff Wong
2021-04-30 06:31:41 -10:00
committed by GitHub
parent 7b5f31ff04
commit 656b0ae39e
2 changed files with 6 additions and 2 deletions

View File

@ -45,6 +45,7 @@ task "themes:install" => :environment do |task, args|
puts " Installed: #{counts[:installed]}"
puts " Updated: #{counts[:updated]}"
puts " Errors: #{counts[:errors]}"
puts " Skipped: #{counts[:skipped]}"
if counts[:errors] > 0
exit 1