mirror of
https://github.com/munki/munki.git
synced 2026-01-11 09:20:27 -06:00
* Run cleanup scripts if they're there * Cleanup script, add to build script * okay * I'm all shelled out * Comment for future greg
12 lines
231 B
Bash
Executable File
12 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
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
|