mirror of
https://github.com/g3rv4/FakeRelay.git
synced 2024-11-07 08:14:03 +01:00
8 lines
109 B
Bash
Executable File
8 lines
109 B
Bash
Executable File
#!/bin/ash
|
|
|
|
if [ "$1" = "web" ]; then
|
|
dotnet FakeRelay.Web.dll
|
|
else
|
|
dotnet FakeRelay.Cli.dll "$@"
|
|
fi
|