mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 08:54:53 +01:00
13 lines
230 B
Batchfile
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
|