GP-0 added cleanHelp task

This commit is contained in:
ghidragon 2022-09-19 11:57:40 -04:00
parent 2113bdc8b1
commit 32e5d1a4c6

View file

@ -119,6 +119,13 @@ task indexHelp(type: JavaExec) {
}
}
task cleanHelp {
File helpOutput = file('build/help/main/help')
doFirst {
delete helpOutput
}
}
// Task for building Ghidra help files
// - depends on the output from the help indexer
task buildHelp(type: JavaExec, dependsOn: indexHelp) {