mirror of https://github.com/sbt/sbt.git
if defined, use explicit historyPath at ThisBuild or Global project scope
This commit is contained in:
parent
63895a3d77
commit
a099754109
|
|
@ -136,7 +136,7 @@ object Defaults extends BuildCommon
|
|||
def paths = Seq(
|
||||
baseDirectory <<= thisProject(_.base),
|
||||
target <<= baseDirectory / "target",
|
||||
historyPath <<= target(t => Some(t / ".history")),
|
||||
historyPath <<= historyPath or target(t => Some(t / ".history")),
|
||||
sourceDirectory <<= baseDirectory / "src",
|
||||
sourceManaged <<= crossTarget / "src_managed",
|
||||
resourceManaged <<= crossTarget / "resource_managed",
|
||||
|
|
|
|||
Loading…
Reference in New Issue