We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d0e411 commit 981af8bCopy full SHA for 981af8b
1 file changed
scripts/build.ps1
@@ -26,9 +26,6 @@ msbuild PCBuild/pcbuild.sln /p:Configuration=Debug /p:Platform=Win32 /p:RuntimeL
26
# verify python is installed
27
PCbuild/win32/python.exe --version
28
29
-Set-Location ./PCBuild
30
-Get-ChildItem -Recurse
31
-
32
New-Item -ItemType Directory -Path "./python-build" -Force
33
34
# copy python 3.11.8 to python-build
@@ -38,4 +35,6 @@ Copy-Item -Path "./PCbuild/win32/python311.lib" -Destination "./python-build/pyt
38
35
Copy-Item -Path "./PCbuild/win32/python311_d.dll" -Destination "./python-build/python311_d.dll"
39
36
Copy-Item -Path "./PCbuild/win32/python311_d.lib" -Destination "./python-build/python311_d.lib"
40
37
+# List the contents of the python-build directory
+Get-ChildItem -Path "./python-build"
41
0 commit comments