GP-542 corrected Ghidra Server classpath.frag file generation

This commit is contained in:
ghidra1
2020-12-22 18:04:30 -05:00
parent dbe2686202
commit d5d7d42c17
+8 -10
View File
@@ -79,16 +79,14 @@ task generateGhidraServerClasspath {
outfile.withPrintWriter { out -> outfile.withPrintWriter { out ->
int idx = 0 int idx = 0
configurations.runGhidraServer.each { jarFile -> configurations.runGhidraServer.each { jarFile ->
if (!jarFile.path.contains("/libsForBuild/")) { def JAR_PATH = rootProject.relativePath(jarFile.absolutePath)
def JAR_PATH = rootProject.relativePath(jarFile.absolutePath) File distPath = file("/")
File distPath = file("/") String resPath
String resPath for (Configuration conf : project.getConfigurations()) {
for (Configuration conf : project.getConfigurations()) { resPath = findJarInDistribution(project, conf, jarFile)
resPath = findJarInDistribution(project, conf, jarFile) if (resPath != null) {
if (resPath != null) { out.println("wrapper.java.classpath.${++idx}=\${ghidra_home}/${resPath}")
out.println("wrapper.java.classpath.${++idx}=\${ghidra_home}/${resPath}") break
break
}
} }
} }
} }