From cdc7ce87cc98dba16cd4a6da0e9876a339e26510 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 4 Apr 2021 03:03:58 +0100 Subject: [PATCH] shiori/run.sh: add missing dash --- images/shiori/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/shiori/run.sh b/images/shiori/run.sh index ebf6587..0a34764 100755 --- a/images/shiori/run.sh +++ b/images/shiori/run.sh @@ -19,7 +19,7 @@ fi cd "${data_dir}" || { echo "Error: Failed to cd into '${data_dir}' (have you checked the permissions?)"; exit 2; }; if [[ "${1}" == "serve" ]]; then - exec /srv/shiori "$@" -port "${port}"; + exec /srv/shiori "$@" --port "${port}"; else exec /srv/shiori "$@"; fi