From aa66b4cda505cb5303d191743f9a2e6c1920887b Mon Sep 17 00:00:00 2001 From: Greg Neagle Date: Tue, 15 Sep 2020 14:54:37 -0700 Subject: [PATCH] Don't do any attempted cleanup of the Python framework so that Munki-driven updates of Munki don't crash mid-upgrade --- code/tools/pkgresources/Scripts_python/postinstall | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/tools/pkgresources/Scripts_python/postinstall b/code/tools/pkgresources/Scripts_python/postinstall index ae5d7927..96c12bb3 100755 --- a/code/tools/pkgresources/Scripts_python/postinstall +++ b/code/tools/pkgresources/Scripts_python/postinstall @@ -1,6 +1,4 @@ #!/bin/sh -# removes old versions when installing/upgrading the Python framework. -# will need to be updated if/when we move to Python 3.9 - -/bin/rm -rf "$3/usr/local/munki/Python.framework/Versions/3.7" \ No newline at end of file +# currently does nothing at all +exit 0 \ No newline at end of file