summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2019-10-21 05:32:05 -0700
committerLinux Build Service Account <lnxbuild@localhost>2019-10-21 05:32:05 -0700
commit5f91b62563a63b32639ec0608024c10f91b687d6 (patch)
tree2c0d1336180f31b76edffbc871dabb7922664a8e /scripts
parent7a117f98b5fbd7726aed973448051fe71855be70 (diff)
parent6dec23e2d32dd103cb6ece90a831f3bb224a8f4f (diff)
Merge 6dec23e2d32dd103cb6ece90a831f3bb224a8f4f on remote branch
Change-Id: Ie9ffa6f969667108741ac99373d809eca056fc67
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/decode_stacktrace.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/decode_stacktrace.sh b/scripts/decode_stacktrace.sh
index ffc46c7c3afb..4f5e76f76b9d 100755
--- a/scripts/decode_stacktrace.sh
+++ b/scripts/decode_stacktrace.sh
@@ -64,7 +64,7 @@ parse_symbol() {
fi
# Strip out the base of the path
- code=${code//^$basepath/""}
+ code=${code#$basepath/}
# In the case of inlines, move everything to same line
code=${code//$'\n'/' '}