From c682c47fdc3ce0832f437bfc407debdfc35653c9 Mon Sep 17 00:00:00 2001 From: Zane Selvans Date: Tue, 10 Sep 2019 10:24:47 -0600 Subject: [PATCH] Add recursive removal of build and dist directories --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index f3c1125ff9..2ae1503403 100644 --- a/tox.ini +++ b/tox.ini @@ -145,7 +145,7 @@ deps = setuptools setuptools_scm commands = - bash -c 'rm -f build/* dist/*' + bash -c 'rm -rf build/* dist/*' python setup.py sdist bdist_wheel [testenv:testrelease]