We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1e559e commit 0ef1a23Copy full SHA for 0ef1a23
1 file changed
ci/pack.ps1
@@ -101,8 +101,13 @@ elseif ($isWindows) {
101
exit 1
102
}
103
104
- if ($curConfig -eq 'Release') {
105
- & $windeployBin --release ./uc2.exe
+ if ($curConfig -eq 'Release') {
+ if ($isMingwBuild) {
106
+ & $windeployBin ./uc2.exe
107
+ }
108
+ else {
109
+ & $windeployBin --release ./uc2.exe
110
111
112
else {
113
& $windeployBin ./uc2.exe
0 commit comments