Strip off _x64 when converting channel > bugsplat db. We do not want x64 and x86 crashes in different databases.
parent
9aa8edf086
commit
ea32c0fba2
|
|
@ -507,7 +507,7 @@ if [ $WANTS_CONFIG -eq $TRUE ] ; then
|
|||
CRASH_REPORTING="-DRELEASE_CRASH_REPORTING=ON"
|
||||
if [ ! -z $CHANNEL_SIMPLE ]
|
||||
then
|
||||
CRASH_REPORTING="$CRASH_REPORTING -DUSE_BUGSPLAT=On -DBUGSPLAT_DB=firestorm_"`echo $CHANNEL_SIMPLE | tr [:upper:] [:lower:]`
|
||||
CRASH_REPORTING="$CRASH_REPORTING -DUSE_BUGSPLAT=On -DBUGSPLAT_DB=firestorm_"`echo $CHANNEL_SIMPLE | tr [:upper:] [:lower:] | sed -e 's/_x64//'`
|
||||
fi
|
||||
else
|
||||
CRASH_REPORTING="-DRELEASE_CRASH_REPORTING:BOOL=OFF"
|
||||
|
|
|
|||
Loading…
Reference in New Issue