mirror of https://github.com/langgenius/dify.git
fix(makefile): correct uv project path for lint target (#25818)
This commit is contained in:
parent
4ba1292455
commit
aa69d90489
2
Makefile
2
Makefile
|
|
@ -62,7 +62,7 @@ check:
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
@echo "🔧 Running ruff format and check with fixes..."
|
@echo "🔧 Running ruff format and check with fixes..."
|
||||||
@uv run --directory api --dev sh -c 'ruff format ./api && ruff check --fix ./api'
|
@uv run --project api --dev sh -c 'ruff format ./api && ruff check --fix ./api'
|
||||||
@echo "✅ Linting complete"
|
@echo "✅ Linting complete"
|
||||||
|
|
||||||
type-check:
|
type-check:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue