Skip to content
Snippets Groups Projects
Commit 6cd7d1d1 authored by Vincent Texier's avatar Vincent Texier Committed by Vincent Texier
Browse files

[fix] #99 fix build and dist clear if folders not exists

parent 18355346
No related branches found
No related tags found
1 merge request!71Merge of pypi_test_deploy to dev
...@@ -38,7 +38,8 @@ format: ...@@ -38,7 +38,8 @@ format:
# build a wheel package in dist folder # build a wheel package in dist folder
build: build:
rm -r build/* dist/* if [ -d "./build" ]; then rm -r build/*; fi
if [ -d "./dist" ]; then rm -r dist/*; fi
python setup.py sdist bdist_wheel python setup.py sdist bdist_wheel
# upload on PyPi repository # upload on PyPi repository
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment