FakeRelay/entrypoint.sh

8 lines
109 B
Bash
Raw Permalink Normal View History

2022-12-04 14:41:02 +01:00
#!/bin/ash
if [ "$1" = "web" ]; then
2024-01-01 15:56:48 +01:00
dotnet FakeRelay.Web.dll
2022-12-04 14:41:02 +01:00
else
2024-01-01 15:56:48 +01:00
dotnet FakeRelay.Cli.dll "$@"
2022-12-04 14:41:02 +01:00
fi