Skip to content

Commit

Permalink
fix reference
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Jul 16, 2024
1 parent ff99a0a commit 9507898
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/coverage-log.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ exec coverage json 2>@stderr >@stdout

if {[info exists env(GITHUB_BASE_REF)]} {
set base $env(GITHUB_BASE_REF)
puts "scanning git log for $base"
set gitlog [exec git log --pretty=ref $base 2>@stderr]
puts "scanning git log for origin/$base"
set gitlog [exec git log --pretty=ref origin/$base 2>@stderr]
foreach {line commit notes} [regexp -all -inline -line {^([a-z0-9]+) \((.*)\)$} $gitlog] {
try {
set prev_data [exec git notes --ref=coverage show $commit 2>@stderr]
Expand Down

0 comments on commit 9507898

Please sign in to comment.