All checks were successful
drawio-export/pipeline/head This commit looks good
This PR closes #2 Reviewed-on: #4
8 lines
330 B
PowerShell
8 lines
330 B
PowerShell
$packageName = '{{.Choco.ID}}'
|
|
$fileType = 'msi'
|
|
$silentArgs = '/quiet';
|
|
$scriptPath = $(Split-Path $MyInvocation.MyCommand.Path);
|
|
$fileFullPath = Join-Path $scriptPath '{{.Choco.MsiFile}}';
|
|
|
|
Install-ChocolateyInstallPackage $packageName $fileType $silentArgs $fileFullPath -checksum '{{.Choco.MsiSum}}' -checksumType = 'sha256'
|