refactor(run): do not report project id in error message

This commit is contained in:
Mahyar Mirrashed
2025-03-13 11:41:36 -07:00
parent 427201a634
commit 2e90addbc5

View File

@@ -144,7 +144,7 @@ var runCmd = &cobra.Command{
util.HandleError(err, "Could not confirm project has environment")
}
if !hasEnvironment {
util.HandleError(fmt.Errorf("project '%s' does not have environment '%s'", projectId, environmentName))
util.HandleError(fmt.Errorf("project does not have environment '%s'", environmentName))
}
log.Debug().Msgf("Project '%s' has environment '%s'", projectId, environmentName)