mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-21 20:52:40 +00:00
711f87aad8
- Update Docopt - Switch toin-house Picofeed branch for now - Update composer-bin - Update php-cs-fixer Daux has been left as-is for now even though we're using an old version
21 lines
394 B
Batchfile
21 lines
394 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%
|
|
|
|
if "%1"=="clean" (
|
|
call "%base%vendor-bin\robo\vendor\bin\robo" "%roboCommand%" %args%
|
|
) else (
|
|
call "%base%vendor-bin\robo\vendor\bin\robo" "%roboCommand%" -- %args%
|
|
)
|