summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Chisamore <schisamo@opscode.com>2011-11-10 14:22:37 -0500
committerSeth Chisamore <schisamo@opscode.com>2011-11-10 14:22:37 -0500
commit8a4e50e7516018cbe6bcc489daa7500a504bc9cb (patch)
tree9068053e3a1380305ba1d4a7afc004262443dd2c
parentc0c1e9b6a69ff474d509c2d796404dc44453d75f (diff)
downloadmixlib-shellout-8a4e50e7516018cbe6bcc489daa7500a504bc9cb.tar.gz
name attributes should not have a default value
-rw-r--r--resources/zipfile.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/zipfile.rb b/resources/zipfile.rb
index 727cd07..a4aa135 100644
--- a/resources/zipfile.rb
+++ b/resources/zipfile.rb
@@ -22,7 +22,7 @@
actions :unzip # TODO , :zip
-attribute :path, :kind_of => String, :default => ".", :name_attribute => true
+attribute :path, :kind_of => String, :name_attribute => true
attribute :source, :kind_of => String
attribute :overwrite, :kind_of => [ TrueClass, FalseClass ], :default => false