diff --git a/uv/private/create_venv.sh b/uv/private/create_venv.sh index 10edaf4..b88b2d4 100644 --- a/uv/private/create_venv.sh +++ b/uv/private/create_venv.sh @@ -8,6 +8,10 @@ REQUIREMENTS_TXT="{{requirements_txt}}" PYTHON="$(realpath "$RESOLVED_PYTHON")" +if [ -z ${TERM} ] || [ ${TERM} == "dumb" ]; then + export TERM=xterm +fi + bold="$(tput bold)" normal="$(tput sgr0)"