Skip to content

Commit f2533af

Browse files
committed
fix: uv group
1 parent dc1e2d4 commit f2533af

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

services/apps/git_integration/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ check_setup:
1818
fi
1919
@if ! uv run ruff --version >/dev/null 2>&1; then \
2020
echo "📦 Installing dev dependencies..."; \
21-
uv sync --extra dev; \
21+
uv sync --group dev; \
2222
fi
2323

2424
##@ 🚀 Setup and installation
@@ -28,7 +28,7 @@ setup: ## Install uv and dev dependencies (only if not already installed)
2828
@if command -v uv >/dev/null 2>&1; then \
2929
echo "✅ uv is already installed at $$(which uv)"; \
3030
echo "📦 Installing dev dependencies..."; \
31-
uv sync --extra dev; \
31+
uv sync --group dev; \
3232
echo "✅ Setup complete"; \
3333
else \
3434
echo "📦 uv is required to:"; \
@@ -45,7 +45,7 @@ setup: ## Install uv and dev dependencies (only if not already installed)
4545
echo 'export PATH="$$HOME/.cargo/bin:$$PATH"' >> ~/.bashrc; \
4646
export PATH="$$HOME/.cargo/bin:$$PATH"; \
4747
echo "📦 Installing dev dependencies..."; \
48-
uv sync --extra dev; \
48+
uv sync --group dev; \
4949
echo "✅ uv installed and dev dependencies ready"; \
5050
echo "📝 Next steps:"; \
5151
echo " - Restart your terminal or run: source ~/.zshrc"; \

0 commit comments

Comments
 (0)