diff options
author | Roman Chvanikov <chvanikoff@pm.me> | 2020-07-11 16:09:46 +0300 |
---|---|---|
committer | Roman Chvanikov <chvanikoff@pm.me> | 2020-07-11 16:09:46 +0300 |
commit | 05187d497da1844005eaf96fbcab65840a578bb1 (patch) | |
tree | f8f43560ef70f74db12fa63c5adccd3f57dd56fe /mix.exs | |
parent | aedbbec88aa0a9a38e588eabfbecb8058652002b (diff) | |
download | pleroma-05187d497da1844005eaf96fbcab65840a578bb1.tar.gz |
One can not simply call application modules from mix.exs
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -234,7 +234,7 @@ defmodule Pleroma.Mixfile do defp version(version) do identifier_filter = ~r/[^0-9a-z\-]+/i - git_available? = Pleroma.Utils.command_available?("git") + git_available? = match?({_output, 0}, System.cmd("sh", ["-c", "command -v git"])) git_pre_release = if git_available? do |