Build a Python 3.9.13 framework instead of 3.10.x to avoid issue #1136

This commit is contained in:
Greg Neagle
2022-05-20 09:00:56 -07:00
parent 5ee0f5928a
commit 60cfd69bb7
2 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ if [ -f "/usr/local/munki/python" ]; then
fi
# sometimes old versions are left behind in the framework. remove them.
for OLDVERS in 3.7 3.8 3.9 ; do
for OLDVERS in 3.7 3.8 ; do
if [ -d "/usr/local/munki/Python.framework/Versions/${OLDVERS}" ]; then
/bin/rm -r "/usr/local/munki/Python.framework/Versions/${OLDVERS}"
fi