drawio-export/build/package/msi/templates/choco/chocolateyInstall.ps1
Алексей Бадяев 8d18d7291e
All checks were successful
drawio-export/pipeline/head This commit looks good
Автоматическая сборка пакетов Debian (#4)
This PR closes #2

Reviewed-on: #4
2023-04-12 22:37:54 +07:00

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'