We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ca9975 commit e657dfdCopy full SHA for e657dfd
.github/workflows/build_nuget.yml
@@ -115,6 +115,14 @@ jobs:
115
if ("${{ matrix.platform }}" -eq "osx" -and (Test-Path "unity/upms/nodejs/Plugins/macOS")) {
116
Move-Item -Path "unity/native/papi-nodejs/.backends/papi-nodejs/lib/macOS/libnode.93.dylib" -Destination "unity/upms/nodejs/Plugins/macOS/libnode.93.dylib" -Force
117
}
118
+ # Remove python's PuertsCore.dll on Windows
119
+ if ("${{ matrix.platform }}" -eq "win") {
120
+ $puertsCorePath = "unity/native/papi-python/build_win_x64_papi-python/Release/PuertsCore.dll"
121
+ if (Test-Path $puertsCorePath) {
122
+ Remove-Item $puertsCorePath -Force
123
+ Write-Host "Removed $puertsCorePath to avoid duplicate PuertsCore.dll."
124
+ }
125
126
shell: pwsh
127
128
0 commit comments