From fed29651b2c4b3b2c6aaa4efb6296f2475f6c530 Mon Sep 17 00:00:00 2001 From: Colin Darie Date: Thu, 16 Mar 2023 18:06:44 +0100 Subject: [PATCH] fix(after-party): typo in task name --- ...=> 20230316125244_fix_private_champ_type_mismatch.rake} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) rename lib/tasks/deployment/{20230316125244_fix_champ_type_mismatch.rake => 20230316125244_fix_private_champ_type_mismatch.rake} (75%) diff --git a/lib/tasks/deployment/20230316125244_fix_champ_type_mismatch.rake b/lib/tasks/deployment/20230316125244_fix_private_champ_type_mismatch.rake similarity index 75% rename from lib/tasks/deployment/20230316125244_fix_champ_type_mismatch.rake rename to lib/tasks/deployment/20230316125244_fix_private_champ_type_mismatch.rake index cacc33e49..2a56b18b5 100644 --- a/lib/tasks/deployment/20230316125244_fix_champ_type_mismatch.rake +++ b/lib/tasks/deployment/20230316125244_fix_private_champ_type_mismatch.rake @@ -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