Created
April 15, 2011 03:03
-
-
Save marc-etienne/921054 to your computer and use it in GitHub Desktop.
Automator script to symbolicate crash reports. I have this on my Download folder for new files ending with ".crash".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SYMCRASH=/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash | |
OUTPUT_FOLDER="$HOME/Crash Reports" | |
mkdir -p "$OUTPUT_FOLDER" | |
for f in "$@" | |
do | |
$SYMCRASH -o "$OUTPUT_FOLDER/$(basename "$f")" "$f" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment