How to remove elixir package on hex
Asked Answered
C

2

7

I want to remove published elixir package on hex. I already know that I can only delete it up to one hour after creation with this command.

mix hex.publish --revert VERSION

But, Is there another way to delete package that is over one hour after creation on hex ? Thanks for every suggestion.

Commercial answered 25/4, 2015 at 15:49 Comment(0)
H
8

Quoting the documentation of the hex.publish mix task:

If you want to revert a publication that is more than one hour old you need to contact an administrator.

Hanny answered 25/4, 2015 at 16:17 Comment(2)
Is there a standard way to contract an administrator. I published a version by mistake from a feature branch, as the package (ace) currently has zero downloads it seams a shame I can't fix my mistake.Esemplastic
And if the package was publish less than an hour ago?Romberg
K
3

You can revert to a package back to the starting point with no version.

mix hex.publish --revert 0.0.1

This will revert the version 0.0.1 published and will leave the package with no code in it, just the name for now until admin will remove the package as requested.

Knavish answered 5/5, 2016 at 9:59 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.