mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
13 lines
261 B
Groovy
13 lines
261 B
Groovy
apply from: "$rootProject.projectDir/gradle/distributableGhidraModule.gradle"
|
|
|
|
rootProject.assembleDistribution {
|
|
def p = this.project
|
|
|
|
def zipPath = getZipPath(p)
|
|
|
|
from (p.projectDir.toString()) {
|
|
exclude "bin"
|
|
exclude "build"
|
|
into { zipPath }
|
|
}
|
|
}
|