X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=mix.exs;h=1a28b6710e67a161ba365ecb9f4c460d788be6e5;hb=6ed5044c4e1889a51a1dc6015b602759b83fc3b7;hp=865ead43b1ad5eae7ef075e698d229ac92c86269;hpb=bc5cf2c1926225a43589abf330fe984ea439cb00;p=akkoma diff --git a/mix.exs b/mix.exs index 865ead43b..1a28b6710 100644 --- a/mix.exs +++ b/mix.exs @@ -56,6 +56,7 @@ defmodule Pleroma.Mixfile do {:calendar, "~> 0.17.4"}, {:cachex, "~> 3.0.2"}, {:httpoison, "~> 1.2.0"}, + {:tesla, "~> 1.2"}, {:jason, "~> 1.0"}, {:mogrify, "~> 0.6.1"}, {:ex_aws, "~> 2.0"}, @@ -95,7 +96,7 @@ defmodule Pleroma.Mixfile do {git_tag, git_pre_release} = with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]), tag = String.trim(tag), - {describe, 0} <- System.cmd("git", ["describe", "--tags"]), + {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]), describe = String.trim(describe), ahead <- String.replace(describe, tag, "") do {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}