27 lines
1.3 KiB
Diff
27 lines
1.3 KiB
Diff
diff --git a/Ghidra/RuntimeScripts/Common/support/buildExtension.gradle b/Ghidra/RuntimeScripts/Common/support/buildExtension.gradle
|
|
index bc194f219..94b00fabd 100644
|
|
--- a/Ghidra/RuntimeScripts/Common/support/buildExtension.gradle
|
|
+++ b/Ghidra/RuntimeScripts/Common/support/buildExtension.gradle
|
|
@@ -82,7 +82,7 @@ dependencies {
|
|
helpPath fileTree(dir: ghidraDir + '/Features/Base', include: "**/Base.jar")
|
|
}
|
|
|
|
-def ZIP_NAME_PREFIX = "${DISTRO_PREFIX}_${RELEASE_NAME}_${getCurrentDate()}"
|
|
+def ZIP_NAME_PREFIX = "${DISTRO_PREFIX}_${RELEASE_NAME}"
|
|
def DISTRIBUTION_DIR = file("dist")
|
|
|
|
def pathInZip = "${project.name}"
|
|
diff --git a/gradle/root/distribution.gradle b/gradle/root/distribution.gradle
|
|
index f44c8267b..f6231c417 100644
|
|
--- a/gradle/root/distribution.gradle
|
|
+++ b/gradle/root/distribution.gradle
|
|
@@ -32,7 +32,7 @@ apply from: "$rootProject.projectDir/gradle/support/sbom.gradle"
|
|
def currentPlatform = getCurrentPlatformName()
|
|
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_NAME_PREFIX = "${rootProject.DISTRO_PREFIX}"
|
|
ext.ZIP_DIR_PREFIX = "${rootProject.DISTRO_PREFIX}"
|
|
ext.ALL_REPOS = [rootProject.file('.').getName()]
|
|
|