Skip to content

Commit df341f0

Browse files
committed
run.sh: Allow passing parameters to the daemon
1 parent bc50a70 commit df341f0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

run.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ pip install --prefix ".env" dist/*.whl --force-reinstall
7575
if [[ ${1-} == 'daemon' ]]; then
7676
# Kill any existing daemons before spawning our own
7777
pkill -f scc-daemon || true
78-
scc-daemon debug
78+
shift
79+
scc-daemon debug $@
7980
else
8081
sc-controller $@
8182
fi

0 commit comments

Comments
 (0)