shiori/run.sh: add missing dash

This commit is contained in:
Starbeamrainbowlabs 2021-04-04 03:03:58 +01:00
parent 5f8369d19c
commit cdc7ce87cc
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -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