Method: CHBuild::Controller.delete_container

Defined in:
lib/chbuild/controller.rb

.delete_containerObject



144
145
146
147
148
149
150
151
# File 'lib/chbuild/controller.rb', line 144

def self.delete_container
  if c = container?
    c.delete(force: true)
    true
  else
    false
  end
end