From b9ac9ea1ab053e303685b0c1d013e4ce4e733b93 Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Thu, 29 Apr 2021 14:38:24 -0400 Subject: [PATCH] GP-913: When the build adds new properties to application.properties, it no longer assumes the primary repo is named "ghidra" --- gradle/root/distribution.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/root/distribution.gradle b/gradle/root/distribution.gradle index a9dd82212b..3cf9fdd044 100644 --- a/gradle/root/distribution.gradle +++ b/gradle/root/distribution.gradle @@ -32,7 +32,7 @@ def PROJECT_DIR = file (rootProject.projectDir.absolutePath) ext.DISTRIBUTION_DIR = file("$buildDir/dist") ext.ZIP_NAME_PREFIX = "${rootProject.DISTRO_PREFIX}_${rootProject.BUILD_DATE_SHORT}" ext.ZIP_DIR_PREFIX = "${rootProject.DISTRO_PREFIX}" -ext.ALL_REPOS = ['ghidra'] +ext.ALL_REPOS = [rootProject.file('.').getName()] // Add any additional repos to the ALL_REPOS array File extensionsList = file("ghidra.repos.config")