Skip to content

Instantly share code, notes, and snippets.

@alco
Last active August 29, 2015 14:02
Show Gist options
  • Save alco/21c9fb148790229147fe to your computer and use it in GitHub Desktop.
Save alco/21c9fb148790229147fe to your computer and use it in GitHub Desktop.
λ elixir -v
Elixir 0.13.3
λ mix deps.get
* Getting jazz (git://github.com/meh/jazz.git)
Cloning into '/Users/alco/Documents/git/phoenix/webexample/deps/jazz'...
[...]
* Getting cowboy (git://github.com/extend/cowboy.git)
Cloning into '/Users/alco/Documents/git/phoenix/webexample/deps/cowboy'...
[...]
* Getting cowlib (git://github.com/extend/cowlib.git)
Cloning into '/Users/alco/Documents/git/phoenix/webexample/deps/cowlib'...
[...]
* Getting ranch (git://github.com/extend/ranch.git)
Cloning into '/Users/alco/Documents/git/phoenix/webexample/deps/ranch'...
[...]
* Getting phoenix (package)
Fetching package (http://s3.hex.pm/tarballs/phoenix-0.2.4.tar)
Unpacked package tarball (/Users/alco/.mix/.package-cache/phoenix-0.2.4.tar)
* Getting plug (package)
Fetching package (http://s3.hex.pm/tarballs/plug-0.4.3.tar)
Unpacked package tarball (/Users/alco/.mix/.package-cache/plug-0.4.3.tar)
* Getting inflex (package)
Fetching package (http://s3.hex.pm/tarballs/inflex-0.2.0.tar)
Unpacked package tarball (/Users/alco/.mix/.package-cache/inflex-0.2.0.tar)
* Getting ex_conf (package)
Fetching package (http://s3.hex.pm/tarballs/ex_conf-0.1.1.tar)
Unpacked package tarball (/Users/alco/.mix/.package-cache/ex_conf-0.1.1.tar)
λ mix deps
* inflex (package)
locked at 0.2.0
could not find an app file at _build/prod/lib/inflex/ebin/inflex.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* ranch (git://github.com/extend/ranch.git)
locked at 5df1f22 (ref)
could not find an app file at _build/prod/lib/ranch/ebin/ranch.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* jazz (git://github.com/meh/jazz.git)
locked at 7af3b74 (ref)
could not find an app file at _build/prod/lib/jazz/ebin/jazz.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* ex_conf (package)
locked at 0.1.1
could not find an app file at _build/prod/lib/ex_conf/ebin/ex_conf.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* cowlib (git://github.com/extend/cowlib.git)
locked at f58340a (ref)
could not find an app file at _build/prod/lib/cowlib/ebin/cowlib.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* cowboy (git://github.com/extend/cowboy.git)
locked at 0502452 (ref)
could not find an app file at _build/prod/lib/cowboy/ebin/cowboy.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* plug (package)
locked at 0.4.3
could not find an app file at _build/prod/lib/plug/ebin/plug.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* phoenix (package)
locked at 0.2.4
could not find an app file at _build/prod/lib/phoenix/ebin/phoenix.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
λ mix deps.compile
* Compiling inflex
[...]
* Compiling ranch
==> ranch (compile)
[...]
* Compiling jazz
[...]
* Compiling ex_conf
[...]
* Compiling cowlib
==> cowlib (compile)
[...]
* Compiling cowboy
==> cowboy (compile)
[...]
* Compiling plug
[...]
* Compiling phoenix
[...]
eroot@2a8d7a4bb8aa:/deploy/webexample# elixir -v
Elixir 0.13.3
root@2a8d7a4bb8aa:/deploy/webexample# mix deps.get
* Getting jazz (git://github.com/meh/jazz.git)
Cloning into '/deploy/webexample/deps/jazz'...
[...]
* Getting cowboy (git://github.com/extend/cowboy.git)
Cloning into '/deploy/webexample/deps/cowboy'...
[...]
* Getting cowlib (git://github.com/extend/cowlib.git)
Cloning into '/deploy/webexample/deps/cowlib'...
[...]
* Getting ranch (git://github.com/extend/ranch.git)
Cloning into '/deploy/webexample/deps/ranch'...
[...]
* Getting phoenix (package)
Fetching package (http://s3.hex.pm/tarballs/phoenix-0.2.4.tar)
Unpacked package tarball (/.mix/.package-cache/phoenix-0.2.4.tar)
* Getting plug (package)
Fetching package (http://s3.hex.pm/tarballs/plug-0.4.3.tar)
Unpacked package tarball (/.mix/.package-cache/plug-0.4.3.tar)
* Getting inflex (package)
Fetching package (http://s3.hex.pm/tarballs/inflex-0.2.0.tar)
Unpacked package tarball (/.mix/.package-cache/inflex-0.2.0.tar)
* Getting ex_conf (package)
Fetching package (http://s3.hex.pm/tarballs/ex_conf-0.1.1.tar)
root@2a8d7a4bb8aa:/deploy/webexample# mix deps
* jazz (git://github.com/meh/jazz.git)
locked at 7af3b74 (ref)
could not find an app file at _build/prod/lib/jazz/ebin/jazz.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* ex_conf (package)
locked at 0.1.1
could not find an app file at _build/prod/lib/ex_conf/ebin/ex_conf.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* ranch (git://github.com/extend/ranch.git)
locked at 5df1f22 (ref)
could not find an app file at _build/prod/lib/ranch/ebin/ranch.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* plug (package)
locked at 0.4.3
could not find an app file at _build/prod/lib/plug/ebin/plug.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* inflex (package)
locked at 0.2.0
could not find an app file at _build/prod/lib/inflex/ebin/inflex.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* phoenix (package)
locked at 0.2.4
could not find an app file at _build/prod/lib/phoenix/ebin/phoenix.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* cowlib (git://github.com/extend/cowlib.git)
locked at f58340a (ref)
could not find an app file at _build/prod/lib/cowlib/ebin/cowlib.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
* cowboy (git://github.com/extend/cowboy.git)
locked at 0502452 (ref)
could not find an app file at _build/prod/lib/cowboy/ebin/cowboy.app, this may happen when you specified the wrong application name in your deps or if the dependency did not compile (which can be amended with `MIX_ENV=prod mix deps.compile`)
root@2a8d7a4bb8aa:/deploy/webexample# mix deps.compile
* Compiling jazz
[...]
* Compiling ex_conf
[...]
* Compiling ranch
==> ranch (compile)
[...]
* Compiling plug
Compiled lib/plug.ex
Compiled lib/plug/adapters/cowboy.ex
Compiled lib/plug/builder.ex
== Compilation error on file lib/plug/conn/adapter.ex ==
** (RuntimeError) cannot compile Plug because the :cowboy application is not available. Please ensure it is listed as a dependency before the plug one.
lib/plug/conn/adapter.ex:4: (file)
(elixir) src/elixir_lexical.erl:17: :elixir_lexical.run/2
(elixir) lib/kernel/parallel_compiler.ex:91: anonymous fn/3 in Kernel.ParallelCompiler.spawn_compilers/8
could not compile dependency plug, mix compile failed. You can recompile this dependency with `mix deps.compile plug` or update it with `mix deps.update plug`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment