From 6e104c95b1e230cf8ebf7d8cc32f2d57c47ff4c9 Mon Sep 17 00:00:00 2001 From: Richard Darst Date: Tue, 1 Jan 2019 23:37:23 +0200 Subject: [PATCH] Fix logging bug in run-hooks (order of logging statement) - The "done running loop" log message was inside the loop, causing it to appear over and over again, making log quite confusing. --- base-notebook/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-notebook/start.sh b/base-notebook/start.sh index ae5af4f6..dd3b4f52 100755 --- a/base-notebook/start.sh +++ b/base-notebook/start.sh @@ -32,8 +32,8 @@ run-hooks () { fi ;; esac - echo "$0: done running hooks in $1" done + echo "$0: done running hooks in $1" } run-hooks /usr/local/bin/start-notebook.d