Skip to content

Commit

Permalink
remove quotes from classpath file
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmborstL committed Oct 9, 2024
1 parent b5b15bc commit 6855369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mill-build/util/src/util/JavaModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ trait JavaModule extends BaseJavaModule {

def windowsClassPathArgumentFile =
T {
val cpString = classPathFileElements().mkString("\"", ";", "\"")
val cpString = classPathFileElements().mkString(";")
val cpArg = "-cp " + cpString
os.write(T.dest / "classpath", cpArg)
T.dest / "classpath"
Expand Down

0 comments on commit 6855369

Please sign in to comment.