Add missing argument for unpacking 7z archive

This commit is contained in:
Manuel Thalmann 2023-07-30 14:36:37 +02:00
parent 8046d7c34c
commit a562562403

View file

@ -180,7 +180,7 @@ class Context {
Start-Process -WorkingDirectory "$destinationPath" `
-FilePath "7z" `
-ArgumentList "x" `
-ArgumentList @("x", "$archivePath") `
-Wait `
-NoNewWindow;
}