diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-21 12:15:26 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-21 12:15:26 (EST) |
commit | 94b9ce636ebadaa548af25addaf43917cea67d8e (patch) | |
tree | b8035ac1b9c7fa58af11e7e88413876f0cfbeccd | |
parent | 82f8ce0eb491b3f8fa6818fefcb841aa4ac3bf01 (diff) |
extract-copyright-comments: Drop "written" keyword
-rwxr-xr-x | extract-copyright-comments | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extract-copyright-comments b/extract-copyright-comments index 0b26731..5ee6b96 100755 --- a/extract-copyright-comments +++ b/extract-copyright-comments @@ -61,7 +61,7 @@ extract_cxx_comment() done if printf '%s' "${comment}" | grep -Eqi \ - 'copyright|\(c\)|author|written|license|public domain' + 'copyright|\(c\)|author|license|public domain' then printf '\t%s\n' "${indent}${comment}" fi @@ -101,7 +101,7 @@ extract_c_comment() done if printf '%s' "${comment}" | grep -Eqi \ - 'copyright|\(c\)|author|written|license|public domain' + 'copyright|\(c\)|author|license|public domain' then printf '%s\n' "${indent}${comment}" | sed 's/^/\t/' fi |