if defined, use explicit historyPath at ThisBuild or Global project scope

This commit is contained in:
Mark Harrah 2012-05-21 22:23:44 -04:00
parent 63895a3d77
commit a099754109
1 changed files with 1 additions and 1 deletions

View File

@ -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",