aboutsummaryrefslogtreecommitdiff
path: root/stage2/Stage2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage2/Stage2.scala')
-rw-r--r--stage2/Stage2.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/stage2/Stage2.scala b/stage2/Stage2.scala
index 7ac7a2a..d43c4f6 100644
--- a/stage2/Stage2.scala
+++ b/stage2/Stage2.scala
@@ -59,11 +59,11 @@ object Stage2 extends Stage2Base{
case file if triggerFiles.exists(file.toString startsWith _.toString) =>
val build = lib.loadRoot(context).finalBuild( context.cwd )
logger.loop(s"Re-running $task for " ++ build.show)
- lib.callReflective(build, task)
+ lib.callReflective(build, task, context)
}
ExitCode.Success
} else {
- val code = lib.callReflective(build, task)
+ val code = lib.callReflective(build, task, context)
logger.stage2(s"Stage2 end")
code
}