From aa115e5baff58767071e4a736806eb6b1e9bfd2f Mon Sep 17 00:00:00 2001 From: Stephen L Date: Fri, 9 Dec 2022 05:18:02 +0100 Subject: [PATCH] fix buildupload in Makefile Signed-off-by: Stephen L. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 23ac12f..1ed1b96 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ build: python -c "import shutil; shutil.rmtree('build', True)" python -c "import shutil; shutil.rmtree('dist', True)" python -c "import shutil; shutil.rmtree('pyFileFixity.egg-info', True)" - python setup.py sdist --formats=gztar,zip bdist_wininst + #python setup.py sdist --formats=gztar,zip bdist_wininst python setup.py sdist bdist_wheel pypimeta: @@ -61,7 +61,7 @@ pypi: twine upload dist/* buildupload: - @+make testsetup + #@+make testsetup @+make build - @+make pypimeta + #@+make pypimeta @+make pypi