Skip to content

Commit

Permalink
Get a line first (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored May 28, 2024
1 parent c934705 commit 74b436e
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2045,8 +2045,13 @@
<concat>${retUUID.txt}</concat>
<filterchain>
<tokenfilter>
<replaceregex
pattern="Processing complete\s*([0-9a-fA-F\-]+)$"
<linetokenizer />
<containsregex pattern="^\s*id:\s*([0-9a-fA-F\-]+)\s*$" />
</tokenfilter>
<tokenfilter>
<stringtokenizer delims=":- \r\n" suppressdelims="true" />
<containsregex
pattern="^\s*id:\s*([0-9a-fA-F\-]+)\s*$"
replace="\1" />
</tokenfilter>
<striplinebreaks/>
Expand Down Expand Up @@ -2114,8 +2119,13 @@
<concat>${zipUUID.txt}</concat>
<filterchain>
<tokenfilter>
<replaceregex
pattern="Processing complete\s*([0-9a-fA-F\-]+)$"
<linetokenizer />
<containsregex pattern="^\s*id:\s*([0-9a-fA-F\-]+)\s*$" />
</tokenfilter>
<tokenfilter>
<stringtokenizer delims=":- \r\n" suppressdelims="true" />
<containsregex
pattern="^\s*id:\s*([0-9a-fA-F\-]+)\s*$"
replace="\1" />
</tokenfilter>
<striplinebreaks/>
Expand Down

0 comments on commit 74b436e

Please sign in to comment.