mix_deps_add icon indicating copy to clipboard operation
mix_deps_add copied to clipboard

publish to hex.

Open MichaelDimmitt opened this issue 5 years ago • 3 comments

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

MichaelDimmitt avatar Jun 26 '19 17:06 MichaelDimmitt

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;
}

MichaelDimmitt avatar Jun 26 '19 18:06 MichaelDimmitt

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.)

bryanstearns avatar Jun 26 '19 19:06 bryanstearns

@MichaelDimmitt I see you forked this repo - if you want to take it over and publish it to hex, please do! 👏 👏 👏

bryanstearns avatar Jul 03 '19 01:07 bryanstearns