fix: remove non-standard tool colorize

fixes #381
This commit is contained in:
Jason Mobarak 2023-11-27 18:47:32 -08:00
parent c85c1c9ed5
commit e5b2ecc125

View file

@ -488,8 +488,7 @@ if [ -z "${EZ_SETUP_URL}" ]; then
fi
if [ -z "${GET_PIP_URL}" ]; then
if [ -n "${PIP_VERSION}" ]; then
{ colorize 1 "WARNING"
echo ": Setting PIP_VERSION=${PIP_VERSION} is no longer supported and may cause failures during the install process."
{ echo "WARNING: Setting PIP_VERSION=${PIP_VERSION} is no longer supported and may cause failures during the install process."
} 1>&2
GET_PIP_URL="https://raw.githubusercontent.com/pypa/pip/${PIP_VERSION}/contrib/get-pip.py"
# Unset `PIP_VERSION` from environment before invoking `get-pip.py` to deal with "ValueError: invalid truth value" (pypa/pip#4528)