Files
python-uncompyle6/admin-tools/check-older-versions.sh
2017-10-11 21:15:06 -04:00

19 lines
337 B
Bash
Executable File

#!/bin/bash
cd $(dirname ${BASH_SOURCE[0]})
if ! source ./pyenv-older-versions ; then
exit $?
fi
if ! source ./setup-python-2.4.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