Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update cmd/create_data_stream.go
Co-authored-by: Jaime Soriano Pastor <[email protected]>
  • Loading branch information
teresaromero and jsoriano authored Sep 16, 2025
commit 092a91c075c418d4e361ee7a885bbeaf179376c4
2 changes: 1 addition & 1 deletion cmd/create_data_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func createDataStreamCommandAction(cmd *cobra.Command, args []string) error {

sv, err := semver.NewVersion(manifest.SpecVersion)
if err != nil {
return fmt.Errorf("failed to obtain spec version from package manifest in \"%s\"", packageRoot)
return fmt.Errorf("failed to obtain spec version from package manifest in \"%s\": %w", packageRoot, err)
}
if !sv.LessThan(semver3_2_0) {
qs = append(qs, &survey.Question{
Expand Down