bitwalker / distillery-test

Elixir application which demonstrates a bare-minimum release-ready app using Distillery.
16 stars 12 forks source link

exrm ~> 0.18 the dependency is not available #3

Closed jpmec closed 8 years ago

jpmec commented 8 years ago

I'm trying to learn exrm on Windows. I cloned exrm-test

cd exrm-test

mix deps.get

mix release

C:\Users\Josh\Documents\GitHub\exrm-test [master]> mix release
Unchecked dependencies for environment dev:
* exrm (~> 0.18)
  the dependency is not available
jpmec commented 8 years ago

I was able to fix by changing

defp deps do
  [{:exrm, path: "~> 0.18"}, {:timex, "~> 0.15"}]
end

to

defp deps do
  [{:exrm, "~> 0.18"}, {:timex, "~> 0.15"}]
end