Skip to content

Commit

Permalink
Merge pull request #1850 from rsteube/env-link
Browse files Browse the repository at this point in the history
added link for get-env, set-env and unset-env
  • Loading branch information
rsteube authored Sep 20, 2023
2 parents 4d2165a + c665ee4 commit 18a06dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions completers/get-env_completer/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
var rootCmd = &cobra.Command{
Use: "get-env <name>",
Short: "get environment variable",
Long: "https://rsteube.github.io/carapace-bin/environment.html",
DisableFlagParsing: true,
Run: func(cmd *cobra.Command, args []string) {},
}
Expand Down
1 change: 1 addition & 0 deletions completers/set-env_completer/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
var rootCmd = &cobra.Command{
Use: "set-env <name> <value>",
Short: "set environment variable",
Long: "https://rsteube.github.io/carapace-bin/environment.html",
DisableFlagParsing: true,
Run: func(cmd *cobra.Command, args []string) {},
}
Expand Down
1 change: 1 addition & 0 deletions completers/unset-env_completer/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
var rootCmd = &cobra.Command{
Use: "unset-env <name>",
Short: "unset environment variable",
Long: "https://rsteube.github.io/carapace-bin/environment.html",
DisableFlagParsing: true,
Run: func(cmd *cobra.Command, args []string) {},
}
Expand Down

0 comments on commit 18a06dd

Please sign in to comment.