(plan PushPlan)
| 5 | ) |
| 6 | |
| 7 | func ShouldCreateBitsPackage(plan PushPlan) bool { |
| 8 | return plan.DropletPath == "" && plan.DockerImageCredentials.Path == "" |
| 9 | } |
| 10 | |
| 11 | func ShouldCreateDockerPackage(plan PushPlan) bool { |
| 12 | return plan.DropletPath == "" && plan.DockerImageCredentials.Path != "" |
no outgoing calls
no test coverage detected