Skip to content

Commit

Permalink
show asterisk next to currentProject in output of ShowProjectsAction
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops authored and harrah committed Aug 5, 2010
1 parent 5e41a47 commit aa75ecf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sbt/src/main/scala/sbt/Main.scala
Expand Up @@ -427,7 +427,7 @@ class xMain extends xsbti.AppMain
action match
{
case HelpAction => displayHelp(isInteractive); true
case ShowProjectsAction => baseProject.projectClosure.foreach(listProject); true
case ShowProjectsAction => baseProject.projectClosure.foreach(listProject(_, currentProject)); true
case ProjectConsoleAction =>
showResult(Run.projectConsole(currentProject), currentProject.log)
case _ =>
Expand Down Expand Up @@ -476,7 +476,7 @@ class xMain extends xsbti.AppMain
if(!isInteractive)
printCmd(InteractiveCommand, "Enters the sbt interactive shell")
}
private def listProject(p: Project) = printProject("\t", p)
private def listProject(p: Project, curr: Project) = printProject(if(p.name == curr.name) "\t* " else "\t ", p)
private def printProject(prefix: String, p: Project): Unit =
Console.println(prefix + p.name + " " + p.version)

Expand Down

0 comments on commit aa75ecf

Please sign in to comment.