mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 04:05:39 +00:00
14 lines
261 B
Groovy
14 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 }
|
|
}
|
|
}
|