feat: update message for deployment tasks that execute in ephemeral containers

Closes #6761
This commit is contained in:
Jose Diaz-Gonzalez
2024-04-04 22:49:00 -04:00
parent 12e6de3137
commit a1bf046771

View File

@@ -192,7 +192,12 @@ func executeScript(appName string, image string, imageTag string, phase string)
return nil
}
common.LogInfo1(fmt.Sprintf("Executing %s task from %s: %s", phaseName, phaseSource, command))
if phase == "predeploy" {
common.LogVerbose(fmt.Sprintf("Executing %s task from %s: %s", phaseName, phaseSource, command))
} else {
common.LogVerbose(fmt.Sprintf("Executing %s task from %s in ephemeral container: %s", phaseName, phaseSource, command))
}
isHerokuishImage := common.IsImageHerokuishBased(image, appName)
isCnbImage := common.IsImageCnbBased(image)
dockerfileEntrypoint := ""