@@ -, +, @@ --- debian/scripts/koha-watcher | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/debian/scripts/koha-watcher +++ a/debian/scripts/koha-watcher @@ -1,4 +1,4 @@ -#!/bin/dash +#!/bin/sh # # koha-watcher -- Restart starman when a file is modified. # Copyright 2022 Mason James @@ -75,7 +75,7 @@ start_reload_loop() { while true; do # restart, if logfile exists if [ -e "$tmpfile" ]; then - kill -s HUP $(cat /var/run/koha/"$instance"/plack.pid) + kill -s HUP $(cat "/var/run/koha/{$instance}/plack.pid") rm "$tmpfile" fi sleep $sec --