Skip to content

Commit 90b4c0f

Browse files
authored
Merge pull request #191 from replicatedhq/kiraboyle/sc-42504/add-or-remove-semantic-versioning-attribute
update messaging of semantic-versioning command to not use shorthand and be consistent with docs
2 parents 2260a14 + 8760c0b commit 90b4c0f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli/cmd/channel_disable_semantic_versioning.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func (r *runners) channelDisableSemanticVersioning(cmd *cobra.Command, args []st
2929
return err
3030
}
3131

32-
fmt.Fprintf(r.w, "Semver successfully disabled for channel %s\n", chanID)
32+
fmt.Fprintf(r.w, "Semantic versioning successfully disabled for channel %s\n", chanID)
3333
r.w.Flush()
3434

3535
return nil

cli/cmd/channel_enable_semantic_versioning.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func (r *runners) channelEnableSemanticVersioning(cmd *cobra.Command, args []str
2929
return err
3030
}
3131

32-
fmt.Fprintf(r.w, "Semver successfully enabled for channel %s\n", chanID)
32+
fmt.Fprintf(r.w, "Semantic versioning successfully enabled for channel %s\n", chanID)
3333
r.w.Flush()
3434

3535
return nil

0 commit comments

Comments
 (0)