mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-23 05:00:07 +00:00
21 lines
493 B
Bash
Executable File
21 lines
493 B
Bash
Executable File
#!/bin/bash
|
|
# Check out master branch and dependent development master 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.12
|
|
|
|
uncompyle6_owd=$(pwd)
|
|
mydir=$(dirname $bs)
|
|
fulldir=$(readlink -f $mydir)
|
|
cd $mydir
|
|
. ./checkout_common.sh
|
|
cd $fulldir/..
|
|
(cd $fulldir/.. && \
|
|
setup_version python-spark master && \
|
|
setup_version python-xdis master )
|
|
checkout_finish master
|