mix_deps_add
mix_deps_add copied to clipboard
publish to hex.
Hello @bryanstearns, thanks for trying to tackle this problem.
I understand the last commit was in 2017, but I was having trouble adding this project to my environment.
mix archive.install https://github.com/bryanstearns/mix_deps_add/releases/download/0.1.3/mix_deps_add-0.1.3.ez
output $ ** (Mix) httpc request failed with: {:bad_status_code, 403}
If the package was published on hex maybe I could install the project from that location. https://hex.pm/packages?search=mix_deps_add&sort=recent_downloads
Got it working with the following bash command:
{
curl -s -O https://github.com/bryanstearns/mix_deps_add/releases/download/0.1.3/mix_deps_add-0.1.3.ez &&
mix archive.install ./mix_deps_add-0.1.3.ez <<< Y 2>/dev/null;
rm -rf mix_deps_add-0.1.3.ez;
}
Thanks, @MichaelDimmitt - glad you got it working! I haven't used this in quite a while, but my Elixiring is starting to increase again so maybe I'll get to this before long. (I'm leaving this issue open so you'll find out when I do.)
@MichaelDimmitt I see you forked this repo - if you want to take it over and publish it to hex, please do! 👏 👏 👏