Install 7z command if necessary

This commit is contained in:
Manuel Thalmann 2023-07-30 14:33:02 +02:00
parent 9ee1571a21
commit 7d97efe563

View file

@ -26,3 +26,7 @@ foreach ($nativeModule in @("PinnedItem")) {
powershell -c Install-Module -Force "$nativeModule";
}
}
if (-not (Get-Command 7z)) {
choco install -y 7zip.portable;
}