We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa8513f commit dbb8bddCopy full SHA for dbb8bdd
1 file changed
lib/decompress.ps1
@@ -179,7 +179,8 @@ function Expand-ZipArchive {
179
}
180
} else {
181
# Use Expand-Archive to unzip in PowerShell 5+
182
- Expand-Archive -Path $Path -DestinationPath $DestinationPath -Force
+ # Compatible with Pscx (https://github.com/Pscx/Pscx)
183
+ Microsoft.PowerShell.Archive\Expand-Archive -Path $Path -DestinationPath $DestinationPath -Force
184
185
if ($Removal) {
186
# Remove original archive file
0 commit comments