From 4984a143cd0db179c1335bb8562909de42d60b8f Mon Sep 17 00:00:00 2001 From: florimondmanca Date: Thu, 19 Jan 2023 19:52:58 +0100 Subject: [PATCH] Fix "make build" command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 53057ed..eaadce5 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ bin = ${venv}/bin/ pysources = src/ test_project/ tests/ build: - ${python} setup.py sdist bdist_wheel + ${bin}python setup.py sdist bdist_wheel ${bin}twine check dist/* rm -r build