Some admin tools I use.

This commit is contained in:
rocky
2017-10-11 21:14:30 -04:00
parent 85269dc4d8
commit 9a2534556c
10 changed files with 180 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#!/bin/bash
cd $(dirname ${BASH_SOURCE[0]})
if ! source ./pyenv-newer-versions ; then
exit $?
fi
if ! source ./setup-master.sh ; then
exit $?
fi
cd ..
for version in $PYVERSIONS; do
if ! pyenv local $version ; then
exit $?
fi
make clean && python setup.py develop
if ! make check; then
exit $?
fi
done