Ensure 7z is installed for backups

This commit is contained in:
Manuel Thalmann 2024-08-28 04:38:56 +02:00
parent 3b10e5b30d
commit 08c5369260

View file

@ -168,6 +168,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;