Last active
December 18, 2015 17:49
-
-
Save tonini/5820734 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iex(1)> Mix.start | |
:ok | |
iex(2)> Mix.Rebar.global_rebar_cmd | |
"/usr/local/bin/rebar" | |
iex(3)> Mix.Rebar.local_rebar_cmd | |
"/Users/tonini/.mix/rebar" | |
iex(4)> Mix.Rebar.rebar_cmd | |
"/usr/local/bin/rebar" | |
iex(5)> | |
$ mix deps.compile cowboy | |
* Compiling cowboy | |
==> cowboy (compile) | |
Dependency not available: ranch-.* ({git,"git://github.com/extend/ranch.git", | |
"0.8.2"}) | |
ERROR: compile failed while processing /Users/tonini/Projects/dynamo/deps/cowboy: rebar_abort | |
** (Mix) could not compile dependency cowboy, /usr/local/bin/rebar command failed. In case you want to recompile this dependency, please run: mix deps.compile cowboy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @tonini,
I came across this gist when googling the same error. Did you finally find a fix for it by any chance?