summaryrefslogtreecommitdiffhomepage
path: root/dragon
diff options
context:
space:
mode:
authorMichał Dudziński <[email protected]>2021-05-03 12:15:46 +0200
committerAmir Rajan <[email protected]>2021-05-26 16:19:13 -0500
commitba91acb8835e1c85a06e9b4c8cc82db1d12edbb0 (patch)
tree06116c298f0f2f51be861e22077b18089b59b38d /dragon
parentbfab20c9a8a5f2abc5cf2b834c662ea89ad4adde (diff)
downloaddragonruby-game-toolkit-contrib-ba91acb8835e1c85a06e9b4c8cc82db1d12edbb0.tar.gz
dragonruby-game-toolkit-contrib-ba91acb8835e1c85a06e9b4c8cc82db1d12edbb0.zip
iOS wizard: minor tweaks
Diffstat (limited to 'dragon')
-rw-r--r--dragon/ios_wizard.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/dragon/ios_wizard.rb b/dragon/ios_wizard.rb
index 81bd88e..c1c032d 100644
--- a/dragon/ios_wizard.rb
+++ b/dragon/ios_wizard.rb
@@ -84,8 +84,8 @@ class IOSWizard
sprite_path
end
- def start opts = nil
- @opts = opts || {}
+ def start opts = {}
+ @opts = opts
unless $gtk.args.fn.eq_any? @opts[:env], :dev, :prod
raise WizardException.new(
@@ -104,7 +104,11 @@ class IOSWizard
@steps = steps_production_build if @production_build
@certificate_name = nil
init_wizard_status
- log_info "Starting iOS Wizard so we can deploy to your device."
+ if @production_build
+ log_info "Starting iOS Wizard so we can create a production build."
+ else
+ log_info "Starting iOS Wizard so we can deploy to your device."
+ end
@start_at = Kernel.global_tick_count
steps.each do |m|
log_info "Running step ~:#{m}~."