Skip to content
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.

Commit

Permalink
Switched to integer for 'wait_processing_interval' option
Browse files Browse the repository at this point in the history
  • Loading branch information
KrauseFx committed Oct 30, 2015
1 parent 2c7b360 commit 0f07e57
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/pilot/options.rb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def self.available_options
short_option: "-k",
env_name: "PILOT_WAIT_PROCESSING_INTERVAL",
description: "Interval in seconds to wait for iTunes Connect processing",
default_value: "30",
default_value: 30,
is_string: false,
verify_block: proc do |value|
raise "Please enter a valid positive number of seconds" unless value.to_i > 0
end)
Expand Down

0 comments on commit 0f07e57

Please sign in to comment.