Merge branch 'fallback-git-status-to-mix-env' into 'master'

Fallback GitStatus version code to mix env value

See merge request framasoft/mobilizon!642
This commit is contained in:
Thomas Citharel 2020-10-24 14:28:40 +02:00
commit 427773cd48
1 changed files with 3 additions and 2 deletions

View File

@ -9,8 +9,9 @@ defmodule Mobilizon.Service.GitStatus do
String.trim(hash)
_ ->
Logger.warn("Could not read git commit hash")
"UNKNOWN"
# Fallback on Mix version
Logger.warn("Could not read git commit hash, using Mix version code instead.")
Mix.Project.config()[:version]
end)
@doc """