From 76954b4aeb681e72c5afebef0d3c30194f9d503b Mon Sep 17 00:00:00 2001 From: Duncan Bayne Date: Wed, 13 Sep 2023 20:31:49 +1000 Subject: [PATCH] Parameterise the Web vs. Gemini option --- run-dev-server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-dev-server.sh b/run-dev-server.sh index f35c55a..5ab9866 100755 --- a/run-dev-server.sh +++ b/run-dev-server.sh @@ -33,7 +33,7 @@ halp_pid="" trap cleanup EXIT while true; do - perl ./halp.pl --config-filename ./dev-config/halp-config.pl --web & + perl ./halp.pl --config-filename ./dev-config/halp-config.pl "$1" & halp_pid=$! if [ -z "$halp_pid" ]; then echo "failed to start halp" >&2 -- 2.45.2