mirror of
https://github.com/munki/munki.git
synced 2026-01-01 04:00:10 -06:00
Update Python cleanup script to remove version 3.9 from the framework if it's still there
This commit is contained in:
@@ -2,15 +2,15 @@
|
||||
|
||||
set -e
|
||||
|
||||
# remove old python symlink if it exists
|
||||
if [ -f "/usr/local/munki/python" ]; then
|
||||
/bin/rm /usr/local/munki/python
|
||||
fi
|
||||
|
||||
if [ -d "/usr/local/munki/Python.framework/Versions/3.7" ]; then
|
||||
/bin/rm -r /usr/local/munki/Python.framework/Versions/3.7
|
||||
fi
|
||||
|
||||
if [ -d "/usr/local/munki/Python.framework/Versions/3.8" ]; then
|
||||
/bin/rm -r /usr/local/munki/Python.framework/Versions/3.8
|
||||
fi
|
||||
# sometimes old versions are left behind in the framework. remove them.
|
||||
for OLDVERS in 3.7 3.8 3.9 ; do
|
||||
if [ -d "/usr/local/munki/Python.framework/Versions/${OLDVERS}" ]; then
|
||||
/bin/rm -r "/usr/local/munki/Python.framework/Versions/${OLDVERS}"
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
Reference in New Issue
Block a user