feat(Brackets): Init release 0.1.25.7701
- Adobes open source web editor - Supports plugin architecture
This commit is contained in:
17
Brackets/tools/chocolateyInstall.ps1
Normal file
17
Brackets/tools/chocolateyInstall.ps1
Normal file
@@ -0,0 +1,17 @@
|
||||
$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
|
||||
}
|
13
Brackets/tools/chocolateyUninstall.ps1
Normal file
13
Brackets/tools/chocolateyUninstall.ps1
Normal file
@@ -0,0 +1,13 @@
|
||||
$package = 'Brackets'
|
||||
|
||||
try {
|
||||
|
||||
# C:\Program Files (x86)\Brackets Sprint 25
|
||||
# http://stackoverflow.com/questions/450027/uninstalling-an-msi-file-from-the-command-line-without-using-msiexec
|
||||
msiexec.exe '/X{37DF8424-BAF6-458B-A3F0-2A89D65628B2}' /qb-! REBOOT=ReallySuppress
|
||||
|
||||
Write-ChocolateySuccess $package
|
||||
} catch {
|
||||
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
||||
throw
|
||||
}
|
Reference in New Issue
Block a user