8 lines
136 B
Batchfile
8 lines
136 B
Batchfile
|
@echo off
|
||
|
|
||
|
rem Get the directory of this batch script
|
||
|
set "script_dir=%~dp0"
|
||
|
|
||
|
python3 "%script_dir%orca" %*
|
||
|
exit /b %errorlevel%
|