We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ddf218 commit 7822aecCopy full SHA for 7822aec
build.ps1
@@ -586,11 +586,15 @@ function CopyFromLocalCefBuild()
586
Copy-Item ($CefBinaryDir+$CefFileName) $LocalFile
587
Write-Diagnostic "Copy of $CefFileName complete"
588
}
589
-
590
- if (-not (Test-Path (Join-Path $Platform.Folder '\include\cef_version.h')))
+
+ Write-Diagnostic "Removing $Platform.Folder"
591
+ # Always remove directory if exists when copying from local
592
+ if (Test-Path $Platform.Folder)
593
{
- ExtractArchive $LocalFile $CefFileName $Platform.Folder
594
+ Remove-Item $Platform.Folder -Recurse | Out-Null
595
596
597
+ ExtractArchive $LocalFile $CefFileName $Platform.Folder
598
599
600
try
0 commit comments