Skip to content

Commit

Permalink
Merge pull request #58 from modelix/runMPS-invalidation-by-idea.log
Browse files Browse the repository at this point in the history
fix: idea.log caused unnecessary task invalidation
  • Loading branch information
slisson authored Jul 24, 2024
2 parents 21534ec + 403b1ae commit e40cb0e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,14 @@ class MPSRunner(
setAttribute("name", "build.dir")
setAttribute("location", getBuildDir().absolutePath)
}
val mpsTmpDir = getBuildDir().parentFile.resolve(getBuildDir().name + "_tmp")
newChild("property") {
setAttribute("name", "build.mps.config.path")
setAttribute("location", getBuildDir().resolve("config").absolutePath)
setAttribute("location", mpsTmpDir.resolve("config").absolutePath)
}
newChild("property") {
setAttribute("name", "build.mps.system.path")
setAttribute("location", getBuildDir().resolve("system").absolutePath)
setAttribute("location", mpsTmpDir.resolve("system").absolutePath)
}
newChild("property") {
setAttribute("name", "mps.home")
Expand Down

0 comments on commit e40cb0e

Please sign in to comment.