mirror of https://github.com/sbt/sbt.git
Merge pull request #1286 from jaceklaskowski/reload-detailed-help
Detailed help for the reload command (following project's)
This commit is contained in:
commit
90eb46b731
|
|
@ -252,7 +252,18 @@ ProjectsCommand + """
|
||||||
def LoadProjectImpl = "loadp"
|
def LoadProjectImpl = "loadp"
|
||||||
def LoadProject = "reload"
|
def LoadProject = "reload"
|
||||||
def LoadProjectBrief = (LoadProject, LoadProjectDetailed)
|
def LoadProjectBrief = (LoadProject, LoadProjectDetailed)
|
||||||
def LoadProjectDetailed = "(Re)loads the project in the current directory"
|
def LoadProjectDetailed = LoadProject +
|
||||||
|
s"""
|
||||||
|
|
||||||
|
\t(Re)loads the project in the current directory.
|
||||||
|
|
||||||
|
$LoadProject plugins
|
||||||
|
|
||||||
|
\t(Re)loads the plugins project (under project directory).
|
||||||
|
|
||||||
|
$LoadProject return
|
||||||
|
|
||||||
|
\t(Re)loads the root project (and leaves the plugins project)."""
|
||||||
|
|
||||||
def InitCommand = "initialize"
|
def InitCommand = "initialize"
|
||||||
def InitBrief = (InitCommand, "Initializes command processing.")
|
def InitBrief = (InitCommand, "Initializes command processing.")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue