mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-23 13:09:49 +00:00
24 lines
509 B
Bash
Executable File
24 lines
509 B
Bash
Executable File
#!/bin/bash
|
|
# Check out python-2.4-to-2.7 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=2.4.6
|
|
|
|
uncompyle6_owd=$(pwd)
|
|
mydir=$(dirname $bs)
|
|
fulldir=$(readlink -f $mydir)
|
|
cd $mydir
|
|
. ./checkout_common.sh
|
|
|
|
(cd $fulldir/.. && \
|
|
setup_version python-spark python-2.4 && \
|
|
checkout_version python-xdis python-2.4-to-2.7)
|
|
|
|
|
|
checkout_finish python-2.4-to-2.7
|