3263ce5669
* Fix a couple of errors in make scripts * Fix snapshot versioning for launchpad
11 lines
172 B
Bash
Executable File
11 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -f setup.py ]; then
|
|
echo "Must be called from the root folder of the source"
|
|
exit 1
|
|
fi
|
|
|
|
rm -rfv dist_upload
|
|
python3 setup.py build-clean
|