From 7886382bfbb3f72f0b8b9819dea1766febe9e1cd Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Fri, 1 Oct 2010 07:23:11 +0200 Subject: [PATCH] be more user friendly on crash --- all | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/all b/all index 6b19347b..27b5680e 100755 --- a/all +++ b/all @@ -678,8 +678,16 @@ case "$cmd" in rm -f xonotic.core "$@" if [ -f xonotic.core ]; then - echo "The program has CRASHED. Please examine the core dump in the debugger." - gdb "$binary" xonotic.core + if yesno "The program has CRASHED. Do you want to examine the core dump?"; then + gdb "$binary" xonotic.core + #elif yesno "You did not want to examine the core dump. Do you want to provide it - including your DarkPlaces checkout - to the Xonotic developers?"; then + # tar cvzf xonotic.core.tar.gz xonotic.core darkplaces/*.c darkplaces/*.h + # # somehow send it + # rm -f xonotic.core.tar.gz + else + echo "The core dump can be examined later by" + echo " gdb $binary xonotic.core" + fi fi ;; each|foreach) -- 2.39.2