Ah, just do
task cleanTorBinaries(type: Delete)
delete fileTree(torBinariesDir) { include '*.zip'}
}
Note that in this instance Delete.delete(...)
is overriding/hiding Project.delete(...)
(confusing, I know. see Closure.DELEGATE_FIRST)
Ah, just do
task cleanTorBinaries(type: Delete)
delete fileTree(torBinariesDir) { include '*.zip'}
}
Note that in this instance Delete.delete(...)
is overriding/hiding Project.delete(...)
(confusing, I know. see Closure.DELEGATE_FIRST)