From 5f8369d19c83bd1416e1bfd43445adb8456445e8 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 4 Apr 2021 01:42:31 +0100 Subject: [PATCH] shiori/run.sh: fix reference to shiori binary --- images/shiori/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/shiori/run.sh b/images/shiori/run.sh index d11bfca..ebf6587 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/shiori "$@" -port "${port}"; + exec /srv/shiori "$@" -port "${port}"; else - exec /srv/shiori/shiori "$@"; + exec /srv/shiori "$@"; fi