From 73b77d07249008b1a92fd8dfa24505078bc9fd63 Mon Sep 17 00:00:00 2001 From: pyro2927 Date: Sun, 7 Jul 2019 20:59:12 -0700 Subject: [PATCH] Supporting names with spaces --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 6b2cbc5..7c99f5b 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,7 +2,7 @@ set -e if [ "$1" != "/bin/sh" ]; then - python -u ./checkin.py $@ + python -u ./checkin.py "$@" else exec "$@" fi