We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e87dc30 commit 2ca7af4Copy full SHA for 2ca7af4
Brewfile
scripts/bootstrap
@@ -4,19 +4,10 @@ set -e
4
5
cd "$(dirname "$0")/.."
6
7
-if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ] && [ -t 0 ]; then
8
- brew bundle check >/dev/null 2>&1 || {
9
- echo -n "==> Install Homebrew dependencies? (y/N): "
10
- read -r response
11
- case "$response" in
12
- [yY][eE][sS]|[yY])
13
- brew bundle
14
- ;;
15
- *)
16
17
- esac
18
- echo
19
- }
+if ! command -v uv &> /dev/null; then
+ echo "Error: uv is not installed."
+ echo "Install it from https://docs.astral.sh/uv/getting-started/installation/"
+ exit 1
20
fi
21
22
echo "==> Installing Python dependencies…"
0 commit comments