Method: Mortar::S3::S3#remove_file

Defined in:
lib/mortar/s3.rb

#remove_file(file_path) ⇒ Object



100
101
102
103
104
# File 'lib/mortar/s3.rb', line 100

def remove_file(file_path)
  if File.file?(file_path)
    FileUtils.remove(file_path)
  end
end