Simple Mix Task that halts the system when executed.
Literally it's just a mix task that calls System.halt()
.
It's useful to halt the system after some task is complete. For example when running tests on IEx to close the IEx after the test suite runs.
mix archive.install https://github.com/scudelletti/halt_task/raw/master/archives/halt_task.ez
MIX_ENV=test iex -S mix do test, halt
MIX_ENV=test iex -S mix do test, run -e "System.halt"
mix archive.build -o archives/halt_task.ez