mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-18 15:32:56 +00:00
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.
This commit is contained in:
@@ -32,8 +32,8 @@ run-hooks () {
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
echo "$0: done running hooks in $1"
|
|
||||||
done
|
done
|
||||||
|
echo "$0: done running hooks in $1"
|
||||||
}
|
}
|
||||||
|
|
||||||
run-hooks /usr/local/bin/start-notebook.d
|
run-hooks /usr/local/bin/start-notebook.d
|
||||||
|
Reference in New Issue
Block a user