Skip to content

Commit

Permalink
Enable create_venv for non-interactive runs
Browse files Browse the repository at this point in the history
  • Loading branch information
TimotheusBachinger committed Nov 29, 2024
1 parent 96a2c12 commit 12fea86
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions uv/private/create_venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ REQUIREMENTS_TXT="{{requirements_txt}}"

PYTHON="$(realpath "$RESOLVED_PYTHON")"

if [ -z ${TERM} ] || [ ${TERM} == "dump" ]; then
export TERM=xterm
fi

bold="$(tput bold)"
normal="$(tput sgr0)"

Expand Down

0 comments on commit 12fea86

Please sign in to comment.