Add arguments parsing to batch script

Kill me.
This commit is contained in:
JustArchi
2017-10-08 15:14:29 +02:00
parent f210499874
commit 3eab43780b

View File

@@ -1,3 +1,11 @@
@echo off
pushd %~dp0
:loop
IF NOT "%1" == "" (
SET ASF_ARGS=%ASF_ARGS% %1
SHIFT
GOTO :loop
)
dotnet ArchiSteamFarm.dll %ASF_ARGS%