mirror of https://github.com/sbt/sbt.git
Fixed tab completion for multi-project builds
git-svn-id: https://simple-build-tool.googlecode.com/svn/trunk@872 d89573ee-9141-11dd-94d4-bdf5e562f29c
This commit is contained in:
parent
066e5588c7
commit
f2fe9bcfe3
|
|
@ -208,7 +208,7 @@ object Main
|
||||||
* (tail recursively) to prompt for the next command. */
|
* (tail recursively) to prompt for the next command. */
|
||||||
def loop(currentProject: Project): RunCompleteAction =
|
def loop(currentProject: Project): RunCompleteAction =
|
||||||
{
|
{
|
||||||
updateTaskCompletions(baseProject) // this is done after every command because the completions could change due to the action invoked
|
updateTaskCompletions(currentProject) // this is done after every command because the completions could change due to the action invoked
|
||||||
reader.readLine("> ") match
|
reader.readLine("> ") match
|
||||||
{
|
{
|
||||||
case Some(line) =>
|
case Some(line) =>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue