Guest User

Untitled

a guest
Jun 14th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # do these do the same thing?
  2.  
  3. directory "/usr/local/src/swftools-0.9.1" do
  4. action :delete
  5. recursive true
  6. only_if "test -d /usr/local/src/swftools-0.9.1"
  7. end
  8.  
  9. directory "/usr/local/src/swftools-0.9.1" do
  10. action :delete
  11. recursive true
  12. only_if "test -d #{name}"
  13. end
Add Comment
Please, Sign In to add comment