Commit 6e104c95 authored by Richard Darst's avatar Richard Darst

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.
parent 17aba604
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment