File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments