There was an error while loading. Please reload this page.
1 parent 2bffd45 commit 5a5476dCopy full SHA for 5a5476d
1 file changed
Makefile
@@ -43,16 +43,13 @@ install: all
43
cp out/* $(GOPATH)/bin/
44
45
.PHONY: venv
46
-venv: .venv/bin/activate
47
-
48
-.venv/bin/activate:
49
- python3 -m venv .venv
50
- .venv/bin/pip install --upgrade pip
51
- .venv/bin/pip install pre-commit==4.2.0
+ python3 -m venv venv
+ venv/bin/pip install --upgrade pip
+ venv/bin/pip install pre-commit==4.2.0
52
53
.PHONY: pre-commit
54
pre-commit: venv
55
- source .venv/bin/activate && .venv/bin/pre-commit run --all-files
+ source venv/bin/activate && venv/bin/pre-commit run --all-files
56
57
.PHONY: update
58
update:
0 commit comments