summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Mundrawala <jdmundrawala@gmail.com>2015-05-15 12:14:21 -0500
committerJay Mundrawala <jdmundrawala@gmail.com>2015-05-15 12:14:21 -0500
commit9435eb05fb07c6d527f921198a274ba75ded6cea (patch)
tree54941f7e3fee6a3b66790d56a9a49c51028fa1a9
parent6fe51cb8facde96fb5d40cd61d0a2ddb28e8b431 (diff)
downloadchef-jdm/3318.tar.gz
Use multiple attributes in windows_package examplejdm/3318
-rw-r--r--RELEASE_NOTES.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index cc59716ff9..aa623a46be 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -55,7 +55,10 @@ be verified using
```ruby
windows_package '7zip' do
source "http://www.7-zip.org/a/7z938-x64.msi"
- remote_file_attributes :checksum => '7c8e873991c82ad9cfcdbdf45254ea6101e9a645e12977dcd518979e50fdedf3'
+ remote_file_attributes {
+ :path => "C:\\7zip.msi",
+ :checksum => '7c8e873991c82ad9cfcdbdf45254ea6101e9a645e12977dcd518979e50fdedf3'
+ }
end
```