shiori/run.sh: fix reference to shiori binary

This commit is contained in:
Starbeamrainbowlabs 2021-04-04 01:42:31 +01:00
parent f1e4964f4e
commit 5f8369d19c
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 2 additions and 2 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/shiori "$@" -port "${port}";
exec /srv/shiori "$@" -port "${port}";
else
exec /srv/shiori/shiori "$@";
exec /srv/shiori "$@";
fi