style: remove unecesary puts lines

This commit is contained in:
Malo Léon 2023-05-15 19:02:44 +02:00
parent 37cbf76fc9
commit 0207a311b5

View File

@ -8,13 +8,11 @@ module Fastlane
# Check from parameters # Check from parameters
unless Helper::AndroidCdHelper.is_set(params[:from]) unless Helper::AndroidCdHelper.is_set(params[:from])
UI.user_error("❌ Parameters from cannot be null") UI.user_error("❌ Parameters from cannot be null")
puts("Error on beta type parameter")
end end
# Check destination parameters # Check destination parameters
unless Helper::AndroidCdHelper.is_set(params[:destination]) unless Helper::AndroidCdHelper.is_set(params[:destination])
UI.user_error("❌ Parameters destination cannot be null") UI.user_error("❌ Parameters destination cannot be null")
puts("Error on beta type parameter")
end end
UI.message("⌛️ Promoting to Google Play Store from #{params[:from]} to #{params[:destination]}..") UI.message("⌛️ Promoting to Google Play Store from #{params[:from]} to #{params[:destination]}..")