Custom HummingBot for Whitebit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
cd $(dirname "$0")
|
|
|
|
echo "Cleaning up all intermediate and compiled files generated from Cython compilation..."
|
|
|
|
rm -rf build dist
|
|
rm -f $(find . -name "*.pyx" | sed s/\.pyx$/\*\.cpp/g)
|
|
find . \( -name "*.so" -o -name "*.pyd" \) -exec rm -f {} \;
|
|
|
|
echo "Done!"
|
|
|