Skip to content

Instantly share code, notes, and snippets.

@someara
Created November 9, 2012 18:12
Show Gist options
  • Save someara/4047250 to your computer and use it in GitHub Desktop.
Save someara/4047250 to your computer and use it in GitHub Desktop.
unless ::File.exists('/asdljasdljkasdlkajsd') do
file "/tmp/hello" do
content "hi there\n"
end
end
vs
file "/tmp/hello" do
content "hi there\n"
not_if { ::File.exists('/asdljasdljkasdlkajsd') }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment