We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 518dece commit a9759faCopy full SHA for a9759fa
makepanda/makepanda.bat
@@ -8,14 +8,20 @@ REM If we can find both, then run 'makepanda'.
8
REM
9
10
if %PROCESSOR_ARCHITECTURE% == AMD64 (
11
- set pythondir=win-python-x64
+ set suffix=-x64
12
) else (
13
- set pythondir=win-python
+ set suffix=
14
)
15
16
set thirdparty=thirdparty
17
if defined MAKEPANDA_THIRDPARTY set thirdparty=%MAKEPANDA_THIRDPARTY%
18
19
+if exist %thirdparty%\win-python3.7%suffix%\python.exe (
20
+ set pythondir=win-python3.7%suffix%
21
+) else (
22
+ set pythondir=win-python%suffix%
23
+)
24
+
25
if not exist makepanda\makepanda.py goto :missing1
26
if not exist %thirdparty%\%pythondir%\python.exe goto :missing2
27
%thirdparty%\%pythondir%\python.exe makepanda\makepanda.py %*
0 commit comments