From c0800a806544f716128059b792b18017e434538d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Leblanc?= Date: Fri, 26 Nov 2021 11:17:56 -0500 Subject: [PATCH] Add clearing step to pypi in the makefile (#146) --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 740d95d..0b34394 100755 --- a/Makefile +++ b/Makefile @@ -4,7 +4,10 @@ RED=\033[0;31m CYAN=\033[0;36m NC=\033[0m # No Color -pypi-test: +clear-dist: + rm -rf autocrop.egg-info build dist + +pypi-test: clear-dist python setup.py sdist twine upload dist/* -r testpypi