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

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

parent b654e9b3
No related branches found
No related tags found
No related merge requests found
Pipeline #5940 skipped
...@@ -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