mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
17 lines
271 B
Batchfile
17 lines
271 B
Batchfile
|
@echo off
|
||
|
setlocal
|
||
|
set base=%~dp0
|
||
|
set roboCommand=%1
|
||
|
|
||
|
rem get all arguments except the first
|
||
|
shift
|
||
|
set "args="
|
||
|
:parse
|
||
|
if "%~1" neq "" (
|
||
|
set args=%args% %1
|
||
|
shift
|
||
|
goto :parse
|
||
|
)
|
||
|
if defined args set args=%args:~1%
|
||
|
|
||
|
call "%base%vendor\bin\robo" "%roboCommand%" -- %args%
|