feat(SemanticMerge): build / release 0.9.17.0

This commit is contained in:
Iristyle
2013-04-20 20:02:41 -04:00
parent 27539d33d2
commit 0c6975fda1
3 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
$package = 'SemanticMerge'
try {
$params = @{
packageName = $package;
fileType = 'exe';
# BitRock Install Builder
# http://installbuilder.bitrock.com/docs/installbuilder-userguide/ar01s10.html
silentArgs = '--unattendedmodeui none', '--mode unattended';
url = 'http://www.semanticmerge.com/users/download'
}
Install-ChocolateyPackage @params
Write-Host @'
For instructions for use with configuration as a Git merge tool, please see:
http://rlbisbe.wordpress.com/2013/04/15/semantic-merge-as-the-default-merge-tool-with-git-on-windows/
'@
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}