Altered the deploy script and added build instructions

This commit is contained in:
C0UNTM31N 2022-09-10 00:05:08 -05:00
parent 58a82c2b5e
commit 9da32dab4b
3 changed files with 42 additions and 2 deletions

12
tools/buildAndClean.sh Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env bash
# Stop on error
set -e
# Remove old build
rm -rf ../dist/*
rm -rf ../build/*
# Build
cd ..
python setup.py sdist bdist_wheel