Potentially helpful comment

This commit is contained in:
AbdullahM0hamed 2022-08-15 21:14:44 +01:00
parent 269d355a47
commit d26578b28e
1 changed files with 4 additions and 0 deletions

View File

@ -20,3 +20,7 @@ File(rootDir, ".").eachDir { dir ->
fun File.eachDir(block: (File) -> Unit) {
listFiles()?.filter { it.isDirectory }?.forEach { block(it) }
}
// To only include a single project, comment out the previous lines (except the first one), and include your plugin like so:
// include("PluginName")