diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2015-05-15 12:14:21 -0500 |
---|---|---|
committer | Jay Mundrawala <jdmundrawala@gmail.com> | 2015-05-15 12:14:21 -0500 |
commit | 9435eb05fb07c6d527f921198a274ba75ded6cea (patch) | |
tree | 54941f7e3fee6a3b66790d56a9a49c51028fa1a9 /RELEASE_NOTES.md | |
parent | 6fe51cb8facde96fb5d40cd61d0a2ddb28e8b431 (diff) | |
download | chef-9435eb05fb07c6d527f921198a274ba75ded6cea.tar.gz |
Use multiple attributes in windows_package examplejdm/3318
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r-- | RELEASE_NOTES.md | 5 |
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 ``` |