mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-0: Skeleton's build.grade was interfering with building natives in a
release
This commit is contained in:
parent
49592e40c9
commit
27c162ee8f
3 changed files with 11 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue