Skip to content

Commit 4d57122

Browse files
not capitalized
1 parent e962381 commit 4d57122

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

cmd/commands/git-source.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ func NewGitSourceCreateCommand() *cobra.Command {
9696
ctx := cmd.Context()
9797

9898
if len(args) < 1 {
99-
log.G(ctx).Fatal("Must enter runtime name")
99+
log.G(ctx).Fatal("must enter runtime name")
100100
}
101101

102102
if len(args) < 2 {
103-
log.G(ctx).Fatal("Must enter git-source name")
103+
log.G(ctx).Fatal("must enter git-source name")
104104
}
105105

106106
if gsCloneOpts.Repo == "" {
107-
log.G(ctx).Fatal("Must enter a valid value to --git-src-repo. Example: https://github.com/owner/repo-name/path/to/workflow")
107+
log.G(ctx).Fatal("must enter a valid value to --git-src-repo. Example: https://github.com/owner/repo-name/path/to/workflow")
108108
}
109109

110110
if gsCloneOpts.Auth.Password == "" {
@@ -156,11 +156,11 @@ func NewGitSourceDeleteCommand() *cobra.Command {
156156
ctx := cmd.Context()
157157

158158
if len(args) < 1 {
159-
log.G(ctx).Fatal("Must enter runtime name")
159+
log.G(ctx).Fatal("must enter runtime name")
160160
}
161161

162162
if len(args) < 2 {
163-
log.G(ctx).Fatal("Must enter git-source name")
163+
log.G(ctx).Fatal("must enter git-source name")
164164
}
165165

166166
insCloneOpts.Parse()
@@ -200,15 +200,15 @@ func NewGitSourceEditCommand() *cobra.Command {
200200
ctx := cmd.Context()
201201

202202
if len(args) < 1 {
203-
log.G(ctx).Fatal("Must enter a runtime name")
203+
log.G(ctx).Fatal("must enter a runtime name")
204204
}
205205

206206
if len(args) < 2 {
207-
log.G(ctx).Fatal("Must enter a git-source name")
207+
log.G(ctx).Fatal("must enter a git-source name")
208208
}
209209

210210
if gsCloneOpts.Repo == "" {
211-
log.G(ctx).Fatal("Must enter a valid value to --git-src-repo. Example: https://github.com/owner/repo-name/path/to/workflow")
211+
log.G(ctx).Fatal("must enter a valid value to --git-src-repo. Example: https://github.com/owner/repo-name/path/to/workflow")
212212
}
213213

214214
insCloneOpts.Parse()

0 commit comments

Comments
 (0)