More administrivia -

go over git branch checkout programs
This commit is contained in:
rocky
2024-02-12 08:16:13 -05:00
parent 02ed25e7cb
commit e73cd749e7
4 changed files with 14 additions and 5 deletions

View File

@@ -10,6 +10,10 @@ function checkout_version {
return $?
}
function finish {
cd $owd
}
owd=$(pwd)
bs=${BASH_SOURCE[0]}
if [[ $0 == $bs ]] ; then
@@ -20,5 +24,5 @@ mydir=$(dirname $bs)
fulldir=$(readlink -f $mydir)
(cd $fulldir/.. && checkout_version python-spark && checkout_version python-xdis python-2.4-to-2.7 &&
checkout_version python-uncompyle6)
cd $owd
rm -v */.python-version || true
finish