Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Dec 13, 2024
1 parent 5db0f24 commit 82ae80e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/actions/os/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
func ActionEnvironmentVariables() carapace.Action {
return carapace.ActionCallback(func(c carapace.Context) carapace.Action {
m := make(map[string]string)
for _, e := range c.Env {
for _, e := range c.Env { // TODO support os.Eviron triggered by bool arg to break out?
if name, value, ok := strings.Cut(e, "="); ok {
m[name] = value
}
Expand Down

0 comments on commit 82ae80e

Please sign in to comment.