Skip to content

Commit

Permalink
Use platform-specific path separator in SubProcess worker (#13)
Browse files Browse the repository at this point in the history
Pull request: #13
  • Loading branch information
lefou authored May 12, 2022
1 parent f4a2240 commit d367200
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class JBakeWorkerSubProcessImpl(classpath: Seq[Path])(implicit ctx: Log) extends
def runJbakeMain(cwd: Path, args: Shellable*): Unit = {
val proc = os.proc(
"java",
"-cp", classpath.mkString(":"),
"-cp", classpath.mkString(java.io.File.pathSeparator),
"org.jbake.launcher.Main",
args
)
Expand Down

0 comments on commit d367200

Please sign in to comment.