feat(AWSTools.Powershell): release 1.0.0

This commit is contained in:
Iristyle
2013-04-25 12:32:16 -04:00
parent 9d610647d7
commit 273bb66b59
2 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
$package = 'AWSTools.Powershell'
try {
$params = @{
packageName = $package;
fileType = 'msi';
silentArgs = '/quiet';
url = 'http://sdk-for-net.amazonwebservices.com/latest/AWSToolsAndSDKForNet.msi';
}
Install-ChocolateyPackage @params
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}