diff --git a/cmd/check.go b/cmd/deps.go similarity index 92% rename from cmd/check.go rename to cmd/deps.go index a7c9144..5a65c1d 100644 --- a/cmd/check.go +++ b/cmd/deps.go @@ -8,8 +8,8 @@ import ( "github.com/spf13/cobra" ) -var checkCmd = &cobra.Command{ - Use: "check", +var depsCmd = &cobra.Command{ + Use: "deps", Short: "Check for missing binaries", Long: `envr relies on external binaries for certain functionality. @@ -47,5 +47,5 @@ The check command reports on which binaries are available and which are not.`, } func init() { - rootCmd.AddCommand(checkCmd) + rootCmd.AddCommand(depsCmd) } diff --git a/docs/cli/envr.md b/docs/cli/envr.md index e0fc30d..c9ae469 100644 --- a/docs/cli/envr.md +++ b/docs/cli/envr.md @@ -44,7 +44,7 @@ at before, restore your backup with: ### SEE ALSO * [envr backup](envr_backup.md) - Import a .env file into envr -* [envr check](envr_check.md) - Check for missing binaries +* [envr deps](envr_deps.md) - Check for missing binaries * [envr edit-config](envr_edit-config.md) - Edit your config with your default editor * [envr init](envr_init.md) - Set up envr * [envr list](envr_list.md) - View your tracked files diff --git a/docs/cli/envr_check.md b/docs/cli/envr_deps.md similarity index 81% rename from docs/cli/envr_check.md rename to docs/cli/envr_deps.md index d06c504..d78911b 100644 --- a/docs/cli/envr_check.md +++ b/docs/cli/envr_deps.md @@ -1,4 +1,4 @@ -## envr check +## envr deps Check for missing binaries @@ -9,13 +9,13 @@ envr relies on external binaries for certain functionality. The check command reports on which binaries are available and which are not. ``` -envr check [flags] +envr deps [flags] ``` ### Options ``` - -h, --help help for check + -h, --help help for deps ``` ### SEE ALSO