Skip to content

Commit c329409

Browse files
committed
报错
1 parent db09ff5 commit c329409

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build_nuget.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,8 @@ jobs:
201201
202202
# Copy only necessary runtime files (exclude dev files, tests, etc.)
203203
# Copy shared libraries
204-
Copy-Item -Path "$tempExtract/lib/libpython3.14.so*" -Destination "$destPath/lib/" -Force -Recurse
204+
New-Item -ItemType Directory -Force -Path "$destPath/lib"
205+
Copy-Item -Path "$tempExtract/lib/libpython3.14.so*" -Destination "$destPath/lib/" -Force
205206
Copy-Item -Path "$tempExtract/lib/lib*.so*" -Destination "$destPath/lib/" -Force -ErrorAction SilentlyContinue
206207
207208
# Copy Python standard library (exclude tests and unnecessary modules)
@@ -248,6 +249,7 @@ jobs:
248249
249250
# Copy only necessary runtime files
250251
# Copy shared libraries
252+
New-Item -ItemType Directory -Force -Path "$destPath/lib"
251253
Copy-Item -Path "$tempExtract/lib/libpython3.14.dylib" -Destination "$destPath/lib/" -Force
252254
Copy-Item -Path "$tempExtract/lib/lib*.dylib" -Destination "$destPath/lib/" -Force -ErrorAction SilentlyContinue
253255

0 commit comments

Comments
 (0)