Skip to content

Commit

Permalink
setup: fix uv (#33975)
Browse files Browse the repository at this point in the history
* fix

* fix

* fix

* fix
  • Loading branch information
maxime-desroches authored Nov 10, 2024
1 parent 47bd0f0 commit 5b0994c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 27 deletions.
5 changes: 2 additions & 3 deletions tools/install_python_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ function update_uv() {
if ! command -v "uv" > /dev/null 2>&1; then
echo "installing uv..."
curl -LsSf https://astral.sh/uv/install.sh | sh
UV_BIN="$HOME/.cargo/env"
ADD_PATH_CMD=". \"$UV_BIN\""
eval "$ADD_PATH_CMD"
UV_BIN="$HOME/.local/bin"
PATH="$UV_BIN:$PATH"
fi

echo "updating uv..."
Expand Down
48 changes: 24 additions & 24 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5b0994c

Please sign in to comment.