From 78eb03cc65eb4097a061d0afa6e12092da204ea9 Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Wed, 14 Sep 2022 22:43:33 -0700 Subject: [PATCH] install: updated option to skip system python packages for setup.sh to be more appropriately named --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index de58f037..94b2971c 100755 --- a/setup.sh +++ b/setup.sh @@ -4,7 +4,7 @@ PYTHON="${PYTHON:=python3}" PYTHON_DEP="${PYTHON_DEP:=python3}" # install pre-reqs using yum/apt -if [ -z "${NO_PYTHON}" ]; then +if [ -z "${NO_SYSTEM}" ]; then if command -v apt &> /dev/null then echo "setup to install CORE using apt"