Skip to content

Instantly share code, notes, and snippets.

@lazzarello
Created September 15, 2010 21:54
Show Gist options
  • Save lazzarello/581561 to your computer and use it in GitHub Desktop.
Save lazzarello/581561 to your computer and use it in GitHub Desktop.
# do these do the same thing?
directory "/usr/local/src/swftools-0.9.1" do
action :delete
recursive true
only_if "test -d /usr/local/src/swftools-0.9.1"
end
directory "/usr/local/src/swftools-0.9.1" do
action :delete
recursive true
only_if "test -d #{name}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment