We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b020f6 commit efc2ef5Copy full SHA for efc2ef5
build.ps1
@@ -73,8 +73,8 @@ $ZipContents += $DWINFolder
73
$ZipContents | Compress-Archive -DestinationPath $OutputPath -CompressionLevel Optimal -Verbose
74
75
if ($Deploy) {
76
- Remove-Item -Path $(Join-Path $Deploy "DWIN_SET") -Recurse -Force -Verbose
77
- Expand-Archive -Path $OutputPath -DestinationPath $Deploy -Verbose -Force
+ Remove-Item -Path $(Join-Path $Deploy "DWIN_SET") -Recurse -Force -Verbose -ErrorAction SilentlyContinue
+ Copy-Item "$BuildTmpDir/$FirmwareFolderName" -Destination $Deploy -Verbose -Force -Recurse
78
}
79
80
# Done
0 commit comments