META-INF.jreleaser.templates.native-package.chocolatey.tools.chocolateyinstall.ps1.tpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jreleaser-templates Show documentation
Show all versions of jreleaser-templates Show documentation
JReleaser packager templates
The newest version!
# {{jreleaserCreationStamp}}
$toolsDir = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = '{{chocolateyPackageName}}'
fileType = '{{distributionArtifactFileFormat}}'
url = '{{distributionUrl}}'
silentArgs = "/quiet"
validExitCodes= @(0)
softwareName = '{{chocolateyPackageName}}*'
checksum = '{{distributionChecksumSha256}}'
checksumType = 'sha256'
}
Install-ChocolateyPackage @packageArgs