``` it.normalize().absolutePath.let { path -> ...
# announcements
v
Copy code
it.normalize().absolutePath.let { path ->
                    context.logger.log(project.name, 1, "  Deleting " + path)
                    val success = it.deleteRecursively()
                    if (!success) warn("  Couldn't delete " + path)
                }
so what does this
let { path ->
thing do here?