Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
fix type of version string in mix.exs (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
waisbrot authored Aug 24, 2016
1 parent db6ce63 commit 2b9d338
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ defmodule Dogstatsd do
"#{last_vsn}+build-#{short_hash}"
real_vsn ->
# We get here when this is a downloaded Hex package
real_vsn
# In this case, the version comes in as an Erlang string and we need it to be an Elixir string
to_string(real_vsn)
end
end
end
Expand Down

0 comments on commit 2b9d338

Please sign in to comment.