Merge remote-tracking branch 'remotes/origin/develop' into feature/object-hashtags...
[akkoma] / mix.exs
diff --git a/mix.exs b/mix.exs
index 5404a5c11fe46a6f14a20f61c643c1e8f73780f4..489bb5729ba04a25d6a20793a2ce87720aa999ca 100644 (file)
--- a/mix.exs
+++ b/mix.exs
@@ -123,7 +123,7 @@ defmodule Pleroma.Mixfile do
       {:ecto_enum, "~> 1.4"},
       {:ecto_sql, "~> 3.4.4"},
       {:postgrex, ">= 0.15.5"},
-      {:oban, "~> 2.1.0"},
+      {:oban, "~> 2.3.4"},
       {:gettext, "~> 0.18"},
       {:bcrypt_elixir, "~> 2.2"},
       {:trailing_format_plug, "~> 0.0.7"},
@@ -337,26 +337,27 @@ defmodule Pleroma.Mixfile do
 
   defp add_copyright(_) do
     year = NaiveDateTime.utc_now().year
-    line1 = "# Pleroma: A lightweight social networking server\\n"
+    template = ~s[\
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-#{year} Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
 
-    line2 = "# Copyright © 2017-#{year} Pleroma Authors <https://pleroma.social/>\\n"
-
-    line3 = "# SPDX-License-Identifier: AGPL-3.0-only\\n\\n"
-    template = line1 <> line2 <> line3
+] |> String.replace("\n", "\\n")
 
     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};'"
 
-    :os.cmd(String.to_charlist("#{find}#{grep}#{xargs}"))
+    :os.cmd(String.to_charlist("#{find}#{grep} | #{xargs}"))
   end
 
   defp bump_copyright(_) do
     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