From 1ac32d33fdaf215268d3fe03f3ee2a4088c64ccb Mon Sep 17 00:00:00 2001 From: Joseph Pintozzi Date: Mon, 29 Apr 2019 21:36:12 -0700 Subject: [PATCH] Fixing #35, making python output unbuffered --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index e5880ee..6b2cbc5 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,7 +2,7 @@ set -e if [ "$1" != "/bin/sh" ]; then - python ./checkin.py $@ + python -u ./checkin.py $@ else exec "$@" fi