github.com/arunkumar7540/cli@v6.45.0+incompatible/actor/v7pushaction/setup_droplet_path_for_push_plan.go (about)

     1  package v7pushaction
     2  
     3  import (
     4  	"code.cloudfoundry.org/cli/util/manifestparser"
     5  )
     6  
     7  func SetupDropletPathForPushPlan(pushPlan PushPlan, overrides FlagOverrides, manifestApp manifestparser.Application) (PushPlan, error) {
     8  	pushPlan.DropletPath = overrides.DropletPath
     9  
    10  	return pushPlan, nil
    11  }