Mix.Tasks.Local.Install
Install an archive locally.
If no argument is supplied but there is an archive in the root (created with mix archive), then the archive will be installed locally. For example:
mix do archive, local.install
The argument can be an archive located at some URL:
mix local.install http://example.com/foo.ez
After installed, the tasks in the archive are available locally:
mix some_task
Command line options
--forceforces installation without a shell prompt. Primarily intended for automation in build systems like make.
Summary
| run(argv) | Callback implementation of |