Crash report does not work

I am following this tutorial on how to enable a pars failure report: https://www.youtube.com/watch?v=L4SMyHAVJgk

However, after creating the script run and creating my application, I get the following error: /bin/sh failed with exit code 2

I'm not the best at understanding weird error codes like this, so any help would be greatly appreciated!

Here is my run script:

export PATH=/usr/local/bin:$PATH
cd </Users/dom/MyApp/parse>

parse symbols "${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}"

In addition, I am using Xcode 6.1.1

+1
source share
1 answer

Do not use "<>", so let it be simple:

cd /Users/dom/MyApp/parse
+1
source

All Articles