From df341f01f8c59857c836809afb59025d5ae899d4 Mon Sep 17 00:00:00 2001 From: Martin Rys Date: Thu, 31 Oct 2024 12:07:12 +0100 Subject: [PATCH] run.sh: Allow passing parameters to the daemon --- run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 6455dfca..098c3875 100755 --- a/run.sh +++ b/run.sh @@ -75,7 +75,8 @@ pip install --prefix ".env" dist/*.whl --force-reinstall if [[ ${1-} == 'daemon' ]]; then # Kill any existing daemons before spawning our own pkill -f scc-daemon || true - scc-daemon debug + shift + scc-daemon debug $@ else sc-controller $@ fi