about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel E. Moelius III <samuel.moelius@trailofbits.com>2023-08-19 08:43:47 -0400
committerSamuel E. Moelius III <samuel.moelius@trailofbits.com>2023-08-19 08:43:47 -0400
commit80f74934dd413c35fe71c27214d18cfd16de3cce (patch)
tree606bab94cd5e1397000f1401725b1fa8855e9f1a
parent53c26d086b94c4e5f31dddac0dd212cbff89e957 (diff)
downloadafl++-80f74934dd413c35fe71c27214d18cfd16de3cce.tar.gz
Don't hide errors
-rwxr-xr-xafl-system-config4
1 files changed, 2 insertions, 2 deletions
diff --git a/afl-system-config b/afl-system-config
index e3eb8527..07d509ff 100755
--- a/afl-system-config
+++ b/afl-system-config
@@ -114,8 +114,8 @@ if [ "$PLATFORM" = "Darwin" ] ; then
     echo
     echo Unloading the default crash reporter
     SL=/System/Library; PL=com.apple.ReportCrash
-    launchctl unload -w ${SL}/LaunchAgents/${PL}.plist >/dev/null 2>&1
-    sudo launchctl unload -w ${SL}/LaunchDaemons/${PL}.Root.plist >/dev/null 2>&1
+    launchctl unload -w ${SL}/LaunchAgents/${PL}.plist
+    sudo launchctl unload -w ${SL}/LaunchDaemons/${PL}.Root.plist
     echo
   fi
   echo It is recommended to disable System Integrity Protection for increased performance.