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