From 3579c010a5dff06c1f4aa0bc1681f692c1d4bd2a Mon Sep 17 00:00:00 2001 From: Artur Lissin Date: Wed, 15 Jan 2025 15:30:57 +0000 Subject: [PATCH] fix: remove shell spawning --- Makefile | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index aa212ff..f960e18 100644 --- a/Makefile +++ b/Makefile @@ -34,23 +34,23 @@ uninstall: runAct: $(POETRY) shell -runChecks: runAct - lefthook run pre-commit --all-files +runChecks: + $(POETRY) run lefthook run pre-commit --all-files -runDocs: runAct - mkdocs build -f configs/dev/mkdocs.yml -d ../../public +runDocs: + $(POETRY) run mkdocs build -f configs/dev/mkdocs.yml -d ../../public -serveDocs: runAct - mkdocs serve -f configs/dev/mkdocs.yml +serveDocs: + $(POETRY) run mkdocs serve -f configs/dev/mkdocs.yml -runTests: runAct - tox +runTests: + $(POETRY) run tox runBuild: $(POETRY) build -runBump: runAct - cz bump +runBump: + $(POETRY) run cz bump runPoetry: $(POETRY) run $(CMD) @@ -66,8 +66,8 @@ export_runLock: export_runUpdate: $(POETRY) update --with test,docs,dev -com commit: runAct - cz commit +com commit: + $(POETRY) run cz commit -recom recommit: runAct - cz commit --retry +recom recommit: + $(POETRY) run cz commit --retry