All checks were successful
drawio-export/pipeline/head This commit looks good
This PR closes #2 Reviewed-on: #4
7 lines
241 B
PowerShell
7 lines
241 B
PowerShell
$packageName = "{{.Choco.ID}}";
|
|
$fileType = 'msi';
|
|
$scriptPath = $(Split-Path $MyInvocation.MyCommand.Path);
|
|
$fileFullPath = Join-Path $scriptPath '{{.Choco.MsiFile}}';
|
|
|
|
Uninstall-ChocolateyPackage $packageName $fileType "$fileFullPath /q"
|