python-uncompyle6/admin-tools/setup-master.sh
rocky 193c262ffb
Some checks failed
uncompyle6 (osx) / build (macOS, 3.8) (push) Has been cancelled
uncompyle6 (ubuntu) / build (3.8) (push) Has been cancelled
uncompyle6 (windows) / build (windows, 3.8) (push) Has been cancelled
Administrivia
Folloow branching of other projects in this ilk
2024-10-09 04:00:14 -04:00

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