file(relative_source, relative_destination, file_options = {})
public
Remove a file if
it exists and is a file.
Show source
def file(relative_source, relative_destination, file_options = {})
destination = destination_path(relative_destination)
if File.exists?(destination)
logger.rm relative_destination
unless options[:pretend]
if options[:svn]
if options[:svn][relative_destination]
system("svn revert #{destination}")
FileUtils.rm(destination)
else
system("svn rm #{destination}")
end
else
FileUtils.rm(destination)
end
end
else
logger.missing relative_destination
return
end
end