Skip to content

Commit 7114198

Browse files
committed
Setting the Working directory doesn't work for OS X with open -a
1 parent 70e609d commit 7114198

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sbt-dotty/src/dotty/tools/sbtplugin/DottyIDEPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ object DottyIDEPlugin extends AutoPlugin {
238238

239239
runCode := {
240240
runProcess(codeCommand.value ++ Seq("--install-extension", "lampepfl.dotty"), wait = true)
241-
runProcess(codeCommand.value ++ Seq("."), directory = baseDirectory.value)
241+
runProcess(codeCommand.value ++ Seq(baseDirectory.value))
242242
}
243243

244244
) ++ addCommandAlias("launchIDE", ";configureIDE;runCode")

0 commit comments

Comments
 (0)