mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
223 B
Bash
Executable File
8 lines
223 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -x /bin/launchctl ] ; then
|
|
launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist
|
|
trap "launchctl load -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist" 0 1 2 3 15
|
|
fi
|
|
$@
|