diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-19 19:23:21 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-19 19:39:51 (EST) |
commit | 410cff6fd77ebca1ca3b79d998023c7cd2db8446 (patch) | |
tree | 0d861805e6c8196796c09842f137045ba25c0aef /extract-copyright-comments | |
parent | 454af142c176202cf34e3af7f0b4233ea254d0a0 (diff) |
extract-copyright-comments: Drop "written" keyword
Diffstat (limited to 'extract-copyright-comments')
-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 |