mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-02-16 07:30:16 +00:00
fix
This commit is contained in:
parent
8e09231eda
commit
cc9fb24116
@ -39,6 +39,10 @@ rootProject.PLATFORMS.each { platform ->
|
|||||||
t.from ("${p.projectDir}/Linux/server") {
|
t.from ("${p.projectDir}/Linux/server") {
|
||||||
into "server"
|
into "server"
|
||||||
}
|
}
|
||||||
|
t.from ("${rootProject.projectDir}") {
|
||||||
|
include "gradlew"
|
||||||
|
into "support/gradle"
|
||||||
|
}
|
||||||
t.from (p.file("Linux/ghidraRun"))
|
t.from (p.file("Linux/ghidraRun"))
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -49,8 +53,12 @@ rootProject.PLATFORMS.each { platform ->
|
|||||||
t.from ("${p.projectDir}/Windows/server") {
|
t.from ("${p.projectDir}/Windows/server") {
|
||||||
into "server"
|
into "server"
|
||||||
}
|
}
|
||||||
|
t.from ("${rootProject.projectDir}") {
|
||||||
|
include "gradlew.bat"
|
||||||
|
into "support/gradle"
|
||||||
|
}
|
||||||
t.from (p.file("Windows/ghidraRun.bat"))
|
t.from (p.file("Windows/ghidraRun.bat"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -392,19 +392,6 @@ project.PLATFORMS.each { platform ->
|
|||||||
// Make sure that we don't try to copy the same file with the same path into the
|
// Make sure that we don't try to copy the same file with the same path into the
|
||||||
// zip (this can happen!)
|
// zip (this can happen!)
|
||||||
duplicatesStrategy 'exclude'
|
duplicatesStrategy 'exclude'
|
||||||
|
|
||||||
/////////////////////////////////
|
|
||||||
// Gradle Wrapper
|
|
||||||
/////////////////////////////////
|
|
||||||
from (ROOT_PROJECT_DIR) {
|
|
||||||
if (isLinux(platform.name) || isMac(platform.name)) {
|
|
||||||
include "gradlew"
|
|
||||||
}
|
|
||||||
if (isWindows(platform.name)) {
|
|
||||||
include "gradlew.bat"
|
|
||||||
}
|
|
||||||
into "support/gradle"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user