mix mod.relocate (modkit v0.8.1)
View SourceRelocates modules in application according to the :mount option in :modkit
configuration defined in the project file (mix.exs).
If not defined, default mount points are defined as follows:
[
{App, "lib/app"}
{Mix.Tasks, "lib/mix/tasks", flavor: :mix_task}
]Synopsis
mix mod.relocate [options] [module]Arguments
module- A single module to relocate. Defaults to all modules.
Options
-i,--interactive- This flag will make the command prompt for confirmation whenever a file can be relocated. Takes precedences over--force. Defaults tofalse.-f,--force- This flag will make the command actually relocate the files. Defaults tofalse.--help- Displays this help.