You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
19 lines
332 B
Bash
Executable File
19 lines
332 B
Bash
Executable File
#!/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
|