Crowdhailer
Creator of Raxx
New error when fetching dependencies with hex
This morning I was sent the following warning by hex
A new Hex version is available (0.17.1 < 0.17.3), please update with `mix local.hex`
I have updated to the latest by running
mix do local.rebar --force, local.hex --force, deps.get
The error I now see is related to some missing function.
Resolving Hex dependencies…
Dependency resolution completed:
unicode_util_compat 0.2.0
uuid 1.1.7
- Getting ace (Hex package)
** (UndefinedFunctionError) function Hex.unpack_tar!/2 is undefined or private
(hex) Hex.unpack_tar!(“/opt/app/.hex/packages/hexpm/ace-0.15.0.tar”, “/cache/deps/ace”)
(hex) lib/hex/scm.ex:129: Hex.SCM.update/1
(hex) lib/hex/scm.ex:163: Hex.SCM.checkout/1
(mix) lib/mix/dep/fetcher.ex:64: Mix.Dep.Fetcher.do_fetch/3
(mix) lib/mix/dep/converger.ex:180: Mix.Dep.Converger.all/9
(mix) lib/mix/dep/converger.ex:119: Mix.Dep.Converger.all/7
(mix) lib/mix/dep/converger.ex:104: Mix.Dep.Converger.all/4
(mix) lib/mix/dep/converger.ex:50: Mix.Dep.Converger.converge/4
The version information from elixir -v is
Erlang/OTP 20 [erts-9.0.1] [source] [64-bit] [smp:4:4] [ds:4:4:10] [async-threads:10] [hipe] [kernel-poll:false]
Elixir 1.5.1
Where is the Hex module defined? I looked for a hex package called hex and in the mix source. With that I could try and debug further.
Most Liked
ericmj
Elixir Core Team
Now I see that the issue is probably this command:
mix do local.rebar --force, local.hex --force, deps.get
You need to run the hex update and fetching dependencies as separate commands. mix do runs all commands in the same VM, which means that some modules from hex may be already loaded before the update and wont be reloaded unless you restart the VM.
2
Popular in Questions
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service.
Currently when I de...
New
i’m a new one to elixir
which editor can i use
vs code? or atom?
Thanks! :smiley:
New
As a follow up to my earlier question:
I have the code compiling and running but not getting a successful login from the rest server. ...
New
Student & New to elixir. Nice language.
I want to convert a english character, e.g. “a”, which is stored in a variable, to it’s asci...
New
Is there a way to get the call stack or stack trace at any point in the code? Not from exceptions, but an expression that returns how the...
New
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
Hi all
I want to have a unix time, from the current time plus 1 hour.
DateTime.now + 1 hour
How to get it in elixir?
Thanks
New
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
Sometimes I want to check if the input into a function is not a blank string.
My first approach:
defmodule Example do
def do_stuff(s...
New
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors:
[WARN] - (starship::utils): Executing command ...
New
Other popular topics
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
Hi folks,
Few months ago I have announced the proof-of-concept of the library to manipulate the browsers DOM objects directly from Elixi...
New
As promised, the first release candidate of Phoenix 1.3.0 is out! This release focuses on code generators with improved project structure...
New
Could someone help me? I'm making my first elixir program, number guessing game. I can't figure out how to convert the user's guess from ...
New
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
I will often find my self writing things similar to:
case some_value do
nil -> something()
"" -> something()
_ -> someth...
New
I am constructing a JSON object (map) and I need to conditionally set a field. I’m trying to write proper elixir-way code… and I’m at a l...
New
Original source of discussion: This topic on the Pragmatic Programmers' Functional Web Development with Elixir, OTP, and Phoenix forum.
...
New
I have a super simple question about elixir - how would I take a file like this
foo bar baz
and output a new file that enumerates th...
New
Hello again - after a longish gap I’ve decided I really must dig into Elixir and see what’s been happening here - so I have a few questio...
New







