mirror of
https://github.com/sbrow/envr.git
synced 2025-12-29 23:47:39 -05:00
Compare commits
2 Commits
af0a9f9c4c
...
c9c34ce771
| Author | SHA1 | Date | |
|---|---|---|---|
| c9c34ce771 | |||
| 17ce49cd2d |
@@ -13,7 +13,7 @@ const (
|
|||||||
// fd
|
// fd
|
||||||
Fd AvailableFeatures = 2
|
Fd AvailableFeatures = 2
|
||||||
// All features are present
|
// All features are present
|
||||||
All AvailableFeatures = Git & Fd
|
All AvailableFeatures = Git | Fd
|
||||||
)
|
)
|
||||||
|
|
||||||
// Checks for available features.
|
// Checks for available features.
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ import (
|
|||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
var checkCmd = &cobra.Command{
|
var depsCmd = &cobra.Command{
|
||||||
Use: "check",
|
Use: "deps",
|
||||||
Short: "Check for missing binaries",
|
Short: "Check for missing binaries",
|
||||||
Long: `envr relies on external binaries for certain functionality.
|
Long: `envr relies on external binaries for certain functionality.
|
||||||
|
|
||||||
@@ -33,7 +33,7 @@ The check command reports on which binaries are available and which are not.`,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check fd
|
// Check fd
|
||||||
if features&app.Fd == 1 {
|
if features&app.Fd == app.Fd {
|
||||||
table.Append([]string{"fd", "✓ Available"})
|
table.Append([]string{"fd", "✓ Available"})
|
||||||
} else {
|
} else {
|
||||||
table.Append([]string{"fd", "✗ Missing"})
|
table.Append([]string{"fd", "✗ Missing"})
|
||||||
@@ -47,5 +47,5 @@ The check command reports on which binaries are available and which are not.`,
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
rootCmd.AddCommand(checkCmd)
|
rootCmd.AddCommand(depsCmd)
|
||||||
}
|
}
|
||||||
@@ -44,7 +44,7 @@ at before, restore your backup with:
|
|||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [envr backup](envr_backup.md) - Import a .env file into envr
|
* [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 edit-config](envr_edit-config.md) - Edit your config with your default editor
|
||||||
* [envr init](envr_init.md) - Set up envr
|
* [envr init](envr_init.md) - Set up envr
|
||||||
* [envr list](envr_list.md) - View your tracked files
|
* [envr list](envr_list.md) - View your tracked files
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
## envr check
|
## envr deps
|
||||||
|
|
||||||
Check for missing binaries
|
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.
|
The check command reports on which binaries are available and which are not.
|
||||||
|
|
||||||
```
|
```
|
||||||
envr check [flags]
|
envr deps [flags]
|
||||||
```
|
```
|
||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
|
||||||
```
|
```
|
||||||
-h, --help help for check
|
-h, --help help for deps
|
||||||
```
|
```
|
||||||
|
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
Reference in New Issue
Block a user