You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
21 lines
492 B
Bash
21 lines
492 B
Bash
#!/bin/bash
|
|
# Check out python-3.0-to-3.2 and dependent development branches.
|
|
bs=${BASH_SOURCE[0]}
|
|
if [[ $0 == $bs ]] ; then
|
|
echo "This script should be *sourced* rather than run directly through bash"
|
|
exit 1
|
|
fi
|
|
|
|
PYTHON_VERSION=3.0.1
|
|
|
|
uncompyle6_owd=$(pwd)
|
|
mydir=$(dirname $bs)
|
|
fulldir=$(readlink -f $mydir)
|
|
cd $mydir
|
|
. ./checkout_common.sh
|
|
(cd $fulldir/.. && \
|
|
setup_version python-spark master && \
|
|
setup_version python-xdis python-3.0)
|
|
|
|
checkout_finish python-3.0-to-3.2
|