From 9b344308000ebbcbeb7bd1d4c187a6eace59460c Mon Sep 17 00:00:00 2001 From: jelockwood Date: Wed, 20 Feb 2019 13:26:35 +0000 Subject: [PATCH] Fix default value for USE_GECODE preference --- installer_package/postinstall.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/installer_package/postinstall.sh b/installer_package/postinstall.sh index d28c69a..333bf77 100644 --- a/installer_package/postinstall.sh +++ b/installer_package/postinstall.sh @@ -5,6 +5,7 @@ /usr/sbin/chown root:wheel "/Library/LaunchDaemons/com.jelockwood.pinpoint.plist" if [ ! -f "/Library/Preferences/com.jelockwood.pinpoint.plist" ]; then /usr/bin/defaults write "/Library/Preferences/com.jelockwood.pinpoint" USE_ALTITUDE -bool FALSE + /usr/bin/defaults write "/Library/Preferences/com.jelockwood.pinpoint" USE_GEOCODE -bool TRUE /usr/bin/defaults write "/Library/Preferences/com.jelockwood.pinpoint" YOUR_API_KEY -string "" fi /bin/launchctl load "/Library/LaunchDaemons/com.jelockwood.pinpoint.plist"