forked from AkkomaGang/akkoma
mix.exs: Make copyright regexes more precise
- Add copyright checks for Pleroma's not any copyright - Copyright bump fixes the whole line instead of just the year
This commit is contained in:
parent
a17a9dcc4d
commit
3e0d1588a4
1 changed files with 6 additions and 5 deletions
11
mix.exs
11
mix.exs
|
@ -345,18 +345,19 @@ defp add_copyright(_) do
|
||||||
] |> String.replace("\n", "\\n")
|
] |> String.replace("\n", "\\n")
|
||||||
|
|
||||||
find = "find lib test priv -type f \\( -name '*.ex' -or -name '*.exs' \\) -exec "
|
find = "find lib test priv -type f \\( -name '*.ex' -or -name '*.exs' \\) -exec "
|
||||||
grep = "grep -L '# Copyright' {} \\; |"
|
grep = "grep -L '# Copyright © [0-9\-]* Pleroma' {} \\;"
|
||||||
xargs = "xargs -n1 sed -i'' '1s;^;#{template};'"
|
xargs = "xargs -n1 sed -i'' '1s;^;#{template};'"
|
||||||
|
|
||||||
:os.cmd(String.to_charlist("#{find}#{grep}#{xargs}"))
|
:os.cmd(String.to_charlist("#{find}#{grep} | #{xargs}"))
|
||||||
end
|
end
|
||||||
|
|
||||||
defp bump_copyright(_) do
|
defp bump_copyright(_) do
|
||||||
year = NaiveDateTime.utc_now().year
|
year = NaiveDateTime.utc_now().year
|
||||||
find = "find lib test priv -type f \\( -name '*.ex' -or -name '*.exs' \\) |"
|
find = "find lib test priv -type f \\( -name '*.ex' -or -name '*.exs' \\)"
|
||||||
|
|
||||||
xargs = "xargs sed -i'' 's/# Copyright © 2017-20[0-9][0-9]/# Copyright © 2017-#{year}/'"
|
xargs =
|
||||||
|
"xargs sed -i'' 's;# Copyright © [0-9\-]* Pleroma.*$;# Copyright © 2017-#{year} Pleroma Authors <https://pleroma.social/>;'"
|
||||||
|
|
||||||
:os.cmd(String.to_charlist("#{find}#{xargs}"))
|
:os.cmd(String.to_charlist("#{find} | #{xargs}"))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue