Merge pull request #8772 from colinux/fix-after-party-typo

fix(after-party): typo in task name
This commit is contained in:
Colin Darie 2023-03-16 17:16:47 +00:00 committed by GitHub
commit 358bccd79a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
namespace :after_party do
desc 'Deployment task: fix_champ_type_mismatch'
desc 'Deployment task: fix_private_champ_type_mismatch'
task fix_private_champ_type_mismatch: :environment do
puts "Running deploy task 'fix_champ_type_mismatch'"
puts "Running deploy task 'fix_private_champ_type_mismatch'"
champs = Champ.private_only
@ -21,5 +21,8 @@ namespace :after_party do
end
progress.finish
AfterParty::TaskRecord
.create version: AfterParty::TaskRecorder.new(__FILE__).timestamp
end
end