suspend fun executeCommandLine()

in aws-lambda-function/src/main/java/jetbrains/buildServer/runner/lambda/build/LambdaCommandLine.kt [16:23]


    suspend fun executeCommandLine(detachedBuildApi: DetachedBuildApi) {
        logger.log("Starting execution of task...")
        val process = generalCommandLine.createProcess()
        logProcessOutput(process, detachedBuildApi)


        logProcessExitAsync(process, detachedBuildApi)?.join()
    }