github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/actor/v7pushaction/handle_start_command_override.go (about) 1 package v7pushaction 2 3 import ( 4 "code.cloudfoundry.org/cli/command/translatableerror" 5 "code.cloudfoundry.org/cli/util/manifestparser" 6 ) 7 8 func HandleStartCommandOverride(manifest manifestparser.Manifest, overrides FlagOverrides) (manifestparser.Manifest, error) { 9 if overrides.StartCommand.IsSet { 10 if manifest.ContainsMultipleApps() { 11 return manifest, translatableerror.CommandLineArgsWithMultipleAppsError{} 12 } 13 14 webProcess := manifest.GetFirstAppWebProcess() 15 if webProcess != nil { 16 webProcess.SetStartCommand(overrides.StartCommand.Value) 17 } else { 18 app := manifest.GetFirstApp() 19 app.SetStartCommand(overrides.StartCommand.Value) 20 } 21 } 22 23 return manifest, nil 24 }