From 97a273e241a5778e7599b4714f8a3922ce2bc40b Mon Sep 17 00:00:00 2001 From: Nicky Date: Fri, 18 Feb 2022 22:31:31 +0100 Subject: [PATCH] Make sure all bugsplat crashes land in one database per channel. --- scripts/configure_firestorm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/configure_firestorm.sh b/scripts/configure_firestorm.sh index 77f9606f8d..a8b6426ebb 100755 --- a/scripts/configure_firestorm.sh +++ b/scripts/configure_firestorm.sh @@ -520,7 +520,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:] | sed -e 's/_x64//'` + CRASH_REPORTING="$CRASH_REPORTING -DUSE_BUGSPLAT=On -DBUGSPLAT_DB=firestorm_"`echo $CHANNEL_SIMPLE | tr [:upper:] [:lower:] | sed -e 's/x64//' | sed -e 's/_//g'` fi else CRASH_REPORTING="-DRELEASE_CRASH_REPORTING:BOOL=OFF"