From 8c5a42dd3935e9165a36e3dc339a47872897d97c Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sun, 8 Jan 2023 18:39:26 -0500 Subject: [PATCH] Allow passing additional flags to the run script --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 718744c..44ed0b6 100755 --- a/run.sh +++ b/run.sh @@ -13,5 +13,5 @@ # limitations under the License. EXAMPLES=${EXAMPLES:-../examples} echo Starting api server serving ${EXAMPLES} -nix run .\#kitchenDebug -- --verbose debug serve --dir ${EXAMPLES} --tls --cert ~/tls-certs/localhost+2.pem --cert_key ~/tls-certs/localhost+2-key.pem +nix run .\#kitchenDebug -- --verbose debug serve --dir ${EXAMPLES} --tls --cert ~/tls-certs/localhost+2.pem --cert_key ~/tls-certs/localhost+2-key.pem $@ # This is ghetto but I'm doing it anyway