From ac6757b9cc1e2f5ee5b18be6a6771c8f4b024216 Mon Sep 17 00:00:00 2001 From: Chris Plock Date: Fri, 15 Jul 2022 15:13:27 -0700 Subject: [PATCH] Detect python3 fixes https://github.com/k8snetworkplumbingwg/multus-cni/issues/880 --- images/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/entrypoint.sh b/images/entrypoint.sh index 92e8cc426..64d4bb31c 100755 --- a/images/entrypoint.sh +++ b/images/entrypoint.sh @@ -83,7 +83,7 @@ function warn() log "WARN: {$1}" } -if ! type python3 &> /dev/null; then +if type python3 &> /dev/null; then alias python=python3 fi