Skip to content

Commit

Permalink
cleanup distribution dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
fuhrysteve committed Oct 21, 2021
1 parent e630682 commit 16cb2df
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ test:
test_coverage:
pytest --cov-report html --cov-config .coveragerc --cov $(PROJECT)

sdist:
clean_build_and_dist:
if [ -d build/ ]; then \
rm -rf build/ dist/ ; \
fi

sdist: clean_build_and_dist
python setup.py sdist

bdist_wheel:
Expand Down

0 comments on commit 16cb2df

Please sign in to comment.