From 4688a6cd4a8a981783b8f067617958fe7fdccb38 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Wed, 30 Sep 2020 16:53:14 -0400 Subject: [PATCH] jjb: fix unbounded PYTHON variable in print.sh Signed-off-by: Michael Jeanson --- scripts/common/print.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/common/print.sh b/scripts/common/print.sh index 21c5e60..047ed7d 100755 --- a/scripts/common/print.sh +++ b/scripts/common/print.sh @@ -108,7 +108,7 @@ print_tooling() { ${TAR:-tar} --version | head -n1 print_blue "Selected python version" - ${PYTHON} --version + ${PYTHON:-python} --version if command -v "${PYTHON2:-python2}" >/dev/null 2>&1; then print_blue "python2 version" -- 2.34.1