Skip to content

Commit 06de342

Browse files
committed
Fix overwriting local deps for extensions
1 parent 9de21fa commit 06de342

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension/BuildPhpExtension/private/Add-PhpDependencies.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Function Add-PhpDependencies {
3636
}
3737
$file = $matchesFound.Matches[0].Value.Trim()
3838
Get-File -Url "$phpBaseUrl/$($Config.vs_version)/$($Config.arch)/$file" -OutFile $library
39-
Expand-Archive $library "../deps"
39+
Expand-Archive $library "../deps" -Force
4040
Add-BuildLog tick "$library" "Added $($file -replace '\.zip$')"
4141
} catch {
4242
Add-BuildLog cross "$library" "Failed to download $library"

0 commit comments

Comments
 (0)