Skip to content

Commit 20c5c1a

Browse files
committed
[check] Fix bad output from missing concept definition
1 parent de957b3 commit 20c5c1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/check-output.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ cat std-headerindex.ind |
5656

5757
# Find concept index entries missing a definition
5858
cat std-conceptindex.ind |
59-
sed 's/.hyperindexformat/\nhyperindexformat/;s/.hyperpage/hyperpage/' |
59+
sed 's/.hyperindexformat/\nhyperindexformat/;s/.hyperpage/\nhyperpage/g' |
6060
awk 'BEGIN { def=1 } /^ .item/ { if (def==0) { gsub("[{},]", "", item); print item } item=$NF; def=0; next } /hyperindexformat/ { def=1 }' |
6161
sed 's/^\(.*\)$/concept \1 has no definition/' |
6262
fail || failed=1

0 commit comments

Comments
 (0)