Add all the remaining sections to Switching to OTP releases
[akkoma] / mix.exs
diff --git a/mix.exs b/mix.exs
index dc2df01a2a05f48a42019dbfa8d91f81c1982804..0850fad2792221590f2d79d82d918f4b9a2fb9dc 100644 (file)
--- a/mix.exs
+++ b/mix.exs
@@ -49,7 +49,11 @@ defmodule Pleroma.Mixfile do
   end
 
   def copy_nginx_config(%{path: target_path} = release) do
-    File.cp!("./installation/pleroma.nginx", Path.join([target_path, "installation", "pleroma.nginx"]))
+    File.cp!(
+      "./installation/pleroma.nginx",
+      Path.join([target_path, "installation", "pleroma.nginx"])
+    )
+
     release
   end
 
@@ -113,7 +117,7 @@ defmodule Pleroma.Mixfile do
       {:ex_aws, "~> 2.0"},
       {:ex_aws_s3, "~> 2.0"},
       {:earmark, "~> 1.3"},
-      {:bbcode, "~> 0.1"},
+      {:bbcode, "~> 0.1.1"},
       {:ex_machina, "~> 2.3", only: :test},
       {:credo, "~> 0.9.3", only: [:dev, :test]},
       {:mock, "~> 0.3.3", only: :test},
@@ -218,7 +222,7 @@ defmodule Pleroma.Mixfile do
            true <- branch_name != "master" do
         branch_name =
           String.trim(branch_name)
-          |> String.replace(~r/\W+/, "-")
+          |> String.replace(~r/[^0-9a-z\-\.]+/i, "-")
 
         "-" <> branch_name
       end