mirror of https://github.com/sbt/sbt.git
fix displaying non-ResolvedReferences in relativeShow
This commit is contained in:
parent
705608d59d
commit
4e208b0250
|
|
@ -112,7 +112,7 @@ object Project extends Init[Scope] with ProjectExtra
|
|||
case BuildRef(current.build) => "{.}/"
|
||||
case `current` => if(multi) current.project + "/" else ""
|
||||
case ProjectRef(current.build, x) => x + "/"
|
||||
case _ => display(project)
|
||||
case _ => display(project) + "/"
|
||||
}
|
||||
|
||||
private abstract class ProjectDef[PR <: ProjectReference](val id: String, val base: File, aggregate0: => Seq[PR], dependencies0: => Seq[ClasspathDep[PR]], delegates0: => Seq[PR],
|
||||
|
|
|
|||
Loading…
Reference in New Issue