I'm scanning an Elixir project by reading the mix.lock
file and parsing the output of mix deps.tree
command. Later on I need to locate each dependency's .tar
file. On my windows machine the location is inside the C:\Users\{user-name}\.hex\packages\hexpm
folder.
However on my linux machine, the .hex
folder contains only cache.ets
file, but no packages
folder. Searching for .tar
files returns nothing relevant.
Any idea where are those files hiding? cheers, eRez