mirror of https://github.com/sbt/sbt.git
work on displaying task errors
This commit is contained in:
parent
cacd1a5be8
commit
95e5206c3f
|
|
@ -180,6 +180,7 @@ trait Init[Scope]
|
|||
def dependsOn: Seq[ScopedKey[_]] = remove(init.dependsOn, key)
|
||||
def mapReferenced(g: MapScoped): Setting[T] = new Setting(key, init mapReferenced g)
|
||||
def mapKey(g: MapScoped): Setting[T] = new Setting(g(key), init)
|
||||
def mapInit(f: (ScopedKey[T], T) => T): Setting[T] = new Setting(key, init.map(t => f(key,t)))
|
||||
override def toString = "setting(" + key + ")"
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue