class Hatchet::App::FailedReleaseError
Attributes
output[R]
Public Class Methods
new(app, message, output: )
click to toggle source
Calls superclass method
# File lib/hatchet/app.rb, line 37 def initialize(app, message, output: ) @output = output msg = "Could not release '#{app.name}' (#{app.repo_name}) using '#{app.class}' at path: '#{app.original_source_code_directory}'\n" msg << "if this was expected add `allow_failure: true` to your deploy hash.\n" msg << "#{message}\n" msg << "output:\n" msg << "#{output}" super(msg) end