Skip to content

Commit de985b8

Browse files
authored
produce actionable error (#426)
1 parent 369794d commit de985b8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pkg/cmd/build/new.go

+6
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@ func newBuild(ctx context.Context, org string, pipeline string, f *factory.Facto
143143
actionErr = fmt.Errorf("Error getting pipeline: %w", err)
144144
return
145145
}
146+
147+
// Check if the pipeline has a default branch set
148+
if p.DefaultBranch == "" {
149+
actionErr = fmt.Errorf("No default branch set for pipeline %s. Please specify a branch using --branch (-b)", pipeline)
150+
return
151+
}
146152
branch = p.DefaultBranch
147153
}
148154

0 commit comments

Comments
 (0)