From 4d31784a83fae63469f981d58b1da93c5c3ba289 Mon Sep 17 00:00:00 2001 From: Leonardo Grasso Date: Wed, 8 Jul 2020 10:15:56 +0200 Subject: [PATCH] fix(docker): correct syntax error in the entrypoint script Signed-off-by: Leonardo Grasso --- docker/falco/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/falco/docker-entrypoint.sh b/docker/falco/docker-entrypoint.sh index 3bf80b6b..8e852fd1 100755 --- a/docker/falco/docker-entrypoint.sh +++ b/docker/falco/docker-entrypoint.sh @@ -17,7 +17,7 @@ # # todo(leogr): remove deprecation notice within a couple of releases -if [[ ! -z "${SKIP_MODULE_LOAD}"]]; then +if [[ ! -z "${SKIP_MODULE_LOAD}" ]]; then echo "* SKIP_MODULE_LOAD is deprecated and will be removed soon, use SKIP_DRIVER_LOADER instead" fi