Coin provisioning: overwrite files while unzipping

Change-Id: I5cf59322f5a34cffe9fe8668755800bccb8cc13a
Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
This commit is contained in:
Jędrzej Nowacki
2016-05-27 15:07:53 +02:00
committed by Frederik Gladhorn
parent 82873b1b1e
commit 2be9656332

View File

@@ -27,5 +27,5 @@ function Extract-Zip
$shell = new-object -com shell.application
$zipfile = $shell.Namespace($Source)
$destinationFolder = $shell.Namespace($Destination)
$destinationFolder.CopyHere($zipfile.Items())
$destinationFolder.CopyHere($zipfile.Items(), 16)
}