From a36c1051787e0ebea106081f2ff02cf8a8ebffb4 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 5 Mar 2018 10:27:33 +0100 Subject: [PATCH] Bug 19546: (QA follow-up) Make the returning cd more fool proof Trivial and hypothetical fix. If you create /root/AA B (space in dirname), the quotes added here will help you to get back where you came from. Signed-off-by: Marcel de Rooy Signed-off-by: Nick Clemens --- debian/scripts/koha-plack | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/scripts/koha-plack b/debian/scripts/koha-plack index f31dadbabd..1677ee0ec1 100755 --- a/debian/scripts/koha-plack +++ b/debian/scripts/koha-plack @@ -121,7 +121,7 @@ start_plack() log_end_msg 1 fi # Go back to the original dir - cd $current_dir + cd "$current_dir" else log_daemon_msg "Error: Plack already running for ${instancename}" -- 2.39.5