diff --git a/README.md b/README.md index d47cdf7c2..0d85ba573 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ After you finished the previous steps -installation and initialization - to acce To do so, you can use the `rit add repo` command, or execute the command line below: ```bash -echo '{"provider":"Github", "name":"demo", "version":"2.0.0", "url":"https://github.com/ZupIT/ritchie-formulas-demo", "token": null, "priority":"1"}' | rit add repo --stdin +echo '{"provider":"Github", "name":"demo", "version":"2.0.0", "url":"https://github.com/ZupIT/ritchie-formulas-demo", "token": null, "priority":1}' | rit add repo --stdin ``` Then, you'll be able to test Ritchie CLI with the "hello-world" formula through the command line below: diff --git a/pkg/cmd/root.go b/pkg/cmd/root.go index 63f9711fa..68e4d1d63 100644 --- a/pkg/cmd/root.go +++ b/pkg/cmd/root.go @@ -38,8 +38,8 @@ const ( versionMsgWithLatestVersion = "%s\n %s\n Build date: %s\n Built with: %s\n" cmdUse = "rit" cmdShortDescription = "rit is a NoOps CLI" - cmdDescription = `A CLI that developers can build and operate -your applications without help from the infra staff. + cmdDescription = `A CLI to create, store and share any kind of +automations, executing them through command lines. Complete documentation available at https://github.com/ZupIT/ritchie-cli` )