class Thor::Actions::CreateFile

Quiet down create file

def on_conflict_behavior(&block)

def on_conflict_behavior(&block)
  if identical?
    say_status :identical, :blue
  else
    say_status :update, :yellow
    block.call unless pretend?
  end
end