summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml
index 1c33d725d..eaaf5989d 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -194,7 +194,7 @@ steps:
- >
for core in $core_files;
do
- exe=$(gdb --batch -ex 'info proc mappings' -c $core | awk 'h {print $5; exit}; /objfile/ {h=1}');
+ exe=$(gdb --batch -ex 'info proc mappings' -c $core | tail -1 | awk '{print $5}');
gdb --batch -ex 'bt' -c $core $exe; echo '---';
done
- exit $EXIT_CODE