mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
Fix paths in Gradle task descriptionsThese paths was likely not changed during refatoring of Gradle scripts.I make them correspond to actual location of files where their definitions originates.
This commit is contained in:
parent
6bac1a8712
commit
cafa4c3414
3 changed files with 4 additions and 4 deletions
|
@ -95,7 +95,7 @@ rootProject.assembleDistribution {
|
|||
*****************************************************************************************/
|
||||
task sleighCompile (type: JavaExec) {
|
||||
group = rootProject.GHIDRA_GROUP
|
||||
description " Compiles all the sleigh languages. [processorUtils.gradle]\n"
|
||||
description " Compiles all the sleigh languages. [gradle/processorProject.gradle]\n"
|
||||
|
||||
// define standard parameters for JavaExec
|
||||
classpath configurations.sleighConfig
|
||||
|
@ -128,7 +128,7 @@ rootProject.allSleighCompile.dependsOn saveSleighArgs
|
|||
*****************************************************************************************/
|
||||
task cleanSleigh {
|
||||
group rootProject.GHIDRA_GROUP
|
||||
description "Removes all the compile sleigh language files (*.sla). [gradle/processProject.gradle]\n"
|
||||
description "Removes all the compile sleigh language files (*.sla). [gradle/processorProject.gradle]\n"
|
||||
doLast {
|
||||
def deleteTree = fileTree(dir: "data/languages", include: "*.sla")
|
||||
deleteTree.each { File file ->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue