summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sc b/build.sc
index 110086c0..f7f22c7d 100755
--- a/build.sc
+++ b/build.sc
@@ -212,13 +212,13 @@ def devAssembly = T{
)
}
-def dev(args: String*) = T.command{
+def dev(wd: Path, args: String*) = T.command{
mill.modules.Jvm.interactiveSubprocess(
"mill.Main",
Agg.from(assemblyClasspath().flatten.map(_.path)),
jvmArgs = scalalib.testArgs() ++ scalajslib.testArgs() ++ scalaworker.testArgs(),
mainArgs = args,
- workingDir = pwd
+ workingDir = wd
)
}