()
| 55 | } |
| 56 | |
| 57 | func (o *DeployOpts) LocalProjectPath() string { |
| 58 | if o.SubPath != "" { |
| 59 | return filepath.Join(o.GitPath, o.SubPath) |
| 60 | } |
| 61 | return o.GitPath |
| 62 | } |
| 63 | |
| 64 | func (o *DeployOpts) ValidateAndApplyDefaults(ctx context.Context, ch *cmdutil.Helper) error { |
| 65 | if o.remoteURL != "" { |
no outgoing calls
no test coverage detected