Fix wrong args order

This commit is contained in:
JustArchi
2017-10-07 20:16:27 +02:00
parent 94b3e9e776
commit ad2c45adb6
2 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
@echo off
pushd %~dp0
dotnet %ASF_ARGS% ArchiSteamFarm.dll
dotnet ArchiSteamFarm.dll %ASF_ARGS%

View File

@@ -7,4 +7,4 @@ if [[ -z "${ASF_ARGS-}" ]]; then
fi
# We don't need our shell anymore, just replace the current process instead of starting a new one
exec dotnet $ASF_ARGS ArchiSteamFarm.dll
exec dotnet ArchiSteamFarm.dll $ASF_ARGS