10 lines
228 B
Bash
10 lines
228 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -f bin/install_textblob_corpora ]; then
|
|
echo "-----> Running install_textblob_corpora"
|
|
chmod +x bin/install_textblob_corpora
|
|
bin/install_textblob_corpora
|
|
fi
|
|
|
|
echo "-----> Post-compile done"
|