Method: Krane::DeployTask#run

Defined in:
lib/krane/deploy_task.rb

#run(**args) ⇒ Boolean

Runs the task, returning a boolean representing success or failure

Returns:

  • (Boolean)


129
130
131
132
133
134
# File 'lib/krane/deploy_task.rb', line 129

def run(**args)
  run!(**args)
  true
rescue FatalDeploymentError
  false
end