ayon-core/pype/settings/defaults/launchers/windows/python3.bat
2020-09-30 14:39:44 +02:00

13 lines
230 B
Batchfile

@echo off
set __app__="Python36"
set __exe__="C:\Python36\python.exe"
if not exist %__exe__% goto :missing_app
start %__app__% %__exe__% %*
goto :eof
:missing_app
echo ERROR: %__app__% not found in %__exe__%
exit /B 1