Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove elixir package on hex

Tags:

elixir

hex-pm

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.

like image 744
Arkar Aung Avatar asked Apr 25 '15 15:04

Arkar Aung


2 Answers

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.

like image 196
whatyouhide Avatar answered Oct 22 '22 01:10

whatyouhide


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.

like image 3
elpddev Avatar answered Oct 21 '22 23:10

elpddev