Skip to content

Commit

Permalink
Release process: script for cleaning changebars from .xfpt files
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Harris committed Jun 7, 2024
1 parent 1145b1a commit d4d0b59
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions release-process/scripts/docs_strip_changebars
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/awk -f
BEGIN {seen = 0}
/^\.(new|wen)/ && $seen != 0 {next}
/^\.wen$/ {seen = 1;next}
{print}

0 comments on commit d4d0b59

Please sign in to comment.