Skip to content

Commit

Permalink
Fix :kotlin-analysis-api:shadowJar failing on Windows
Browse files Browse the repository at this point in the history
This is similar to #1436

(cherry picked from commit ebb5ac8)
  • Loading branch information
lukellmann authored and KSP Auto Pick committed Jul 24, 2024
1 parent e1b8468 commit 27653c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kotlin-analysis-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ tasks.withType<ShadowJar>() {
args = listOf(
"--multi-release", "base",
"--missing-deps",
"-cp", depJars.joinToString(":"), jarJar.path
"-cp", depJars.joinToString(File.pathSeparator), jarJar.path
)
standardOutput = stdout
}
Expand Down

0 comments on commit 27653c6

Please sign in to comment.