GP-0: Skeleton's build.grade was interfering with building natives in a

release
This commit is contained in:
Ryan Kurtz 2024-08-29 07:00:13 -04:00
parent 49592e40c9
commit 27c162ee8f
3 changed files with 11 additions and 3 deletions

View File

@ -268,7 +268,11 @@ public class VSCodeProjectScript extends GhidraScript {
}
// Fix Ghidra installation directory path in build.gradle
File buildTemplateGradleFile = new File(projectDir, "buildTemplate.gradle");
File buildGradleFile = new File(projectDir, "build.gradle");
if (!buildTemplateGradleFile.renameTo(buildGradleFile)) {
throw new IOException("Failed to rename: " + buildTemplateGradleFile);
}
String fileData = FileUtils.readFileToString(buildGradleFile, StandardCharsets.UTF_8);
fileData =
fileData.replaceAll("<REPLACE>", FilenameUtils.separatorsToUnix(installDir.getPath()));

View File

@ -177,6 +177,11 @@ public class GhidraModuleUtils {
return excludeRegexes.stream().map(r -> Pattern.compile(r)).noneMatch(
p -> p.matcher(f.getName()).matches());
}, null);
File buildTemplateGradleFile = new File(projectDir, "buildTemplate.gradle");
File buildGradleFile = new File(projectDir, "build.gradle");
if (!buildTemplateGradleFile.renameTo(buildGradleFile)) {
throw new IOException("Failed to rename: " + buildTemplateGradleFile);
}
}
catch (CancelledException | IOException e) {
throw new IOException("Failed to copy skeleton directory: " + projectDir);

View File

@ -36,7 +36,6 @@ rootProject.assembleDistribution {
exclude '.classpath'
exclude '.project'
exclude 'build.gradle'
rename "buildTemplate.gradle", "build.gradle"
rename "gitignore", ".gitignore"
into "Extensions/Ghidra/Skeleton"
}