We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15c8c65 commit 98241b8Copy full SHA for 98241b8
build/shell_scripts/build_client.sh
@@ -5,10 +5,13 @@ set -eox pipefail
5
export UV_HTTP_TIMEOUT=3600
6
7
# Ensure uv is installed
8
-if ! command -v uv &> /dev/null; then
9
- echo "Installing uv package manager..."
10
- curl -LsSf https://astral.sh/uv/install.sh | sh
11
- export PATH="$HOME/.cargo/bin:$PATH"
+set +e
+uv --version >/dev/null 2>&1
+return_code=$?
+set -e
12
+if [ $return_code -ne 0 ]; then
13
+ echo "Installing uv package manager via pip..."
14
+ python -m pip install uv
15
fi
16
17
# Setup virtual environment and dependencies
0 commit comments