Files
python-uncompyle6/admin-tools/setup-master.sh
2024-07-22 17:57:50 -04:00

21 lines
496 B
Bash
Executable File

#!/bin/bash
# Check out master branch and dependent development master branches
PYTHON_VERSION=3.8
bs=${BASH_SOURCE[0]}
if [[ $0 == $bs ]] ; then
echo "This script should be *sourced* rather than run directly through bash"
exit 1
fi
mydir=$(dirname $bs)
uncompyle6_owd=$(pwd)
cd $mydir
. ./checkout_common.sh
fulldir=$(readlink -f $mydir)
cd $fulldir/..
(cd $fulldir/.. && \
setup_version python-spark master && \
setup_version python-xdis python-3.6 )
checkout_finish master