Ensure 7z is installed for backups

This commit is contained in:
Manuel Thalmann 2024-08-28 04:38:56 +02:00
parent 69c5d84af6
commit 73400ea7d2

View file

@ -169,6 +169,12 @@ $null = New-Module {
continue; continue;
} }
if (-not (Test-Command "7z")) {
Install-ChocoPackage 7zip.portable;
refreshenv;
continue;
}
if (-not (Test-Command "yq")) { if (-not (Test-Command "yq")) {
Install-ChocoPackage "yq"; Install-ChocoPackage "yq";
refreshenv; refreshenv;