Files
swift-mirror/utils/without-crash-reporting
Graham Batty 9ba13cd93a Add a configuration for linux test running.
Swift SVN r23517
2014-11-21 17:09:46 +00:00

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
$@