Skip to content

Commit

Permalink
Make paths resolve properly on Windows as well
Browse files Browse the repository at this point in the history
Signed-off-by: monosoul <Kloz.Klaud@gmail.com>
  • Loading branch information
monosoul committed Dec 8, 2022
1 parent 1e15ffb commit 9fdd199
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dd-java-agent/instrumentation/rmi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ def rmic = tasks.register('rmic', Exec) {

def clazz = 'rmi.app.ServerLegacy'
commandLine(
"${toolchainPath}/bin/rmic",
toolchainPath.file("bin/rmic").toString(),
"-g",
"-keep",
"-classpath", sourceSets.test.output.classesDirs.asPath,
"-d", "${buildDir}/classes/java/test",
"-d", layout.buildDirectory.dir("classes/java/test").get().toString(),
clazz
)
}
Expand Down

0 comments on commit 9fdd199

Please sign in to comment.