fun findExecutableFileFromProject()

in bunch-cli/src/main/kotlin/org/jetbrains/bunches/hooks/hooks.kt [230:236]


fun findExecutableFileFromProject(): File? {
    val bunchExecutableFile = File("build/install/bunch-cli/bin/", "bunch")
    if (bunchExecutableFile.exists()) {
        return bunchExecutableFile
    }
    return null
}