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

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