This is an automated email from the ASF dual-hosted git repository.
klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new cee769760 fix(Makefile): wrong python-dep path (#4644)
cee769760 is described below
commit cee7697606aa81d3c330769fe0834ee08816af5c
Author: coldgust <[email protected]>
AuthorDate: Wed Mar 15 10:01:45 2023 +0800
fix(Makefile): wrong python-dep path (#4644)
---
backend/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/backend/Makefile b/backend/Makefile
index 763f48794..c81c5b340 100644
--- a/backend/Makefile
+++ b/backend/Makefile
@@ -29,7 +29,7 @@ go-dep:
go install github.com/golangci/golangci-lint/cmd/[email protected]
python-dep:
- pip install -r requirements.txt
+ pip install -r python/requirements.txt
dep: go-dep python-dep