Skip to content

Commit

Permalink
'odo login' command should suggest 'odo project list' instead of 'odo…
Browse files Browse the repository at this point in the history
… projects' (redhat-developer#3262)
  • Loading branch information
Devang Gaur authored and cdrage committed Jun 17, 2020
1 parent d349fdb commit a6ccc0f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/auth/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ func filteredInformation(s []byte) []byte {
s = bytes.Replace(s, []byte("new-project"), []byte("project create"), -1)
s = bytes.Replace(s, []byte("<projectname>"), []byte("<project-name>"), -1)
s = bytes.Replace(s, []byte("project <project-name>"), []byte("project set <project-name>"), -1)
s = bytes.Replace(s, []byte("odo projects"), []byte("odo project list"), -1)

return s
}

0 comments on commit a6ccc0f

Please sign in to comment.