Method: Stackup::MainCommand#run
- Defined in:
- lib/stackup/main_command.rb
#run(arguments) ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/stackup/main_command.rb', line 51 def run(arguments) super(arguments) rescue Stackup::Source::ReadError => e signal_error e. rescue Stackup::ServiceError => e signal_error e. rescue Aws::Errors::MissingCredentialsError signal_error "no credentials provided" rescue Aws::Errors::ServiceError => e signal_error e. end |