Skip to content

Commit

Permalink
simplify table replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikel Broström committed Sep 19, 2024
1 parent 2c42d35 commit 4fdbaad
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ jobs:
start_marker="<!-- START TRACKER TABLE -->"
end_marker="<!-- END TRACKER TABLE -->"
# Use awk to replace lines between markers, preserving non-table content
# Use awk to replace lines between markers, preserving non-table content
awk -v start_marker="$start_marker" -v end_marker="$end_marker" -v new_table="$new_table" '
$0 == start_marker { print $0; print new_table; in_table=1; next }
Expand Down

0 comments on commit 4fdbaad

Please sign in to comment.