The clean & modern RSS server that doesn't give you any crap. https://thearsse.com/
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 lines
394 B

@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%
)