Skip to content

Commit 1314e0c

Browse files
committed
fix: Fix windows artifact paths
1 parent fe6b5b2 commit 1314e0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/build.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ PCbuild/win32/python.exe --version
2929
New-Item -ItemType Directory -Path "./python-build" -Force
3030

3131
# copy python 3.11.8 to python-build
32-
Copy-Item -Path "./PCbuild/win32/python3.dll" -Destination "./python-build/python3.dll"
33-
Copy-Item -Path "./PCbuild/win32/python3.lib" -Destination "./python-build/python3.lib"
32+
Copy-Item -Path "./PCbuild/win32/python311.dll" -Destination "./python-build/python311.dll"
33+
Copy-Item -Path "./PCbuild/win32/python311.lib" -Destination "./python-build/python311.lib"
3434

35-
Copy-Item -Path "./PCbuild/win32/python3_d.dll" -Destination "./python-build/python3_d.dll"
36-
Copy-Item -Path "./PCbuild/win32/python3_d.lib" -Destination "./python-build/python3_d.lib"
35+
Copy-Item -Path "./PCbuild/win32/python311_d.dll" -Destination "./python-build/python311_d.dll"
36+
Copy-Item -Path "./PCbuild/win32/python311_d.lib" -Destination "./python-build/python311_d.lib"
3737

3838

0 commit comments

Comments
 (0)