https://bugs.winehq.org/show_bug.cgi?id=21227
lizhenbo litimetal@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |litimetal@gmail.com
--- Comment #12 from lizhenbo litimetal@gmail.com --- This is still an issue in wine 9.4, and hear is a simplified real world case
- @if not defined _echo @echo off set _C=-c "import sys; sys.stdout.write(sys.executable)" (py -3 %_C% || py -2 %_C% || python3 %_C% || python2 %_C% || python %_C%) > pythonlocation.txt 2> NUL set _C= set /p PYTHON=pythonlocation.txt if NOT DEFINED PYTHON ( echo %__MsgPrefix%Error: Could not find a Python installation. exit /b 1 ) echo Success -