summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-07-12 20:37:25 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-07-12 20:37:25 +0000
commit66a486472c0cf615e9b7d36bdeb2aaa148c2dbf6 (patch)
tree0f015dcd2b02154e16f5082a07f01ce11ca288c6
parentdfd96ad3ef7c513ed55f4817218ee07487c58203 (diff)
round-robin-bisect.sh: Fix $occurences
Change-Id: I1ca715a8c6898e85f1f7e02262933fdeb717e0d7
-rwxr-xr-xround-robin-bisect.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/round-robin-bisect.sh b/round-robin-bisect.sh
index a7db44e0..9e29bcaf 100755
--- a/round-robin-bisect.sh
+++ b/round-robin-bisect.sh
@@ -613,7 +613,7 @@ if [ x"$first_bad" != x"" ]; then
ln -f -s "build-$last_good" "$artifacts/build-last_good"
ln -f -s "build-$last_good.sh" "$artifacts/manifests/build-last_good.sh"
- occurences="$(cat $interesting_commits/$current_project | grep "^$first_bad" | sed -e "s/^$first_bad *//" | tr ' ' '\n' | sed "s#^# - #")"
+ occurences="$(cat $current_project/$interesting_commits/$current_project | grep "^$first_bad" | sed -e "s/^$first_bad *//" | tr ' ' '\n' | sed "s#^# - #")"
if [ "$(echo "$occurences" | wc -l)" -le 1 ]; then
git_log_level="medium"
notify_author=$(git -C $current_project log --pretty="%an <%ae>" -n 1 \