Files
ChocolateyPackages/Brackets/tools/chocolateyInstall.ps1
Iristyle 10489b73c1 feat(Brackets): Init release 0.1.25.7701
- Adobes open source web editor
 - Supports plugin architecture
2013-05-27 20:03:39 -04:00

18 lines
347 B
PowerShell

$package = 'Brackets'
try {
$params = @{
PackageName = $package;
FileType = 'msi';
SilentArgs = '/q';
Url = 'http://download.brackets.io/file.cfm?platform=WIN&build=25';
}
Install-ChocolateyPackage @params
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}