class Packer::Output::Validate

Represents the output from +packer validate+.

@see www.packer.io/docs/command-line/validate.html

Public Instance Methods

valid?() click to toggle source

Returns true if the template is valid.

@return [Boolean]

# File lib/packer/output/validate.rb, line 10
def valid?
  @output.exitstatus.zero?
end