fun cleanUpAndLogSuccess()

in src/aws/install-aws-cli/src.main.kts [329:333]


fun cleanUpAndLogSuccess(temp: File, version: String) {
    println("Deleting temp directory ${temp.absolutePath}")
    temp.deleteRecursively()
    println("Successfully installed AWS CLI $version")
}