We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f73ec commit a86a835Copy full SHA for a86a835
plugin/src/main/scala/com/github/sbt/jni/build/Cargo.scala
@@ -32,7 +32,7 @@ class Cargo(protected val configuration: Seq[String]) extends BuildTool {
32
def clean(): Unit = Process("cargo clean", baseDirectory) ! log
33
34
def library(targetDirectory: File): List[File] = {
35
- val configurationString = (configuration ++ Seq("--target-dir", targetDirectory.getAbsolutePath.enquoted)).mkString(" ").trim
+ val configurationString = (configuration ++ Seq("--target-dir", targetDirectory.getAbsolutePath.backslashed)).mkString(" ").trim
36
val ev =
37
Process(
38
s"cargo build $configurationString",
0 commit comments