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

13 lines
249 B
Batchfile

@echo off
set __app__="Mayapy 2017"
set __exe__="C:\Program Files\Autodesk\Maya2017\bin\mayapy.exe"
if not exist %__exe__% goto :missing_app
call %__exe__% %*
goto :eof
:missing_app
echo ERROR: %__app__% not found at %__exe__%
exit /B 1