Fix context variable name
This commit is contained in:
parent
53bc7fa320
commit
de93716b20
@ -68,7 +68,7 @@ func Main(args []string) (int, error) {
|
|||||||
lifx.WithDebug(debugFlag),
|
lifx.WithDebug(debugFlag),
|
||||||
)
|
)
|
||||||
|
|
||||||
Context := Context{
|
ctx := Context{
|
||||||
Client: c,
|
Client: c,
|
||||||
Config: *config,
|
Config: *config,
|
||||||
Args: args[i:],
|
Args: args[i:],
|
||||||
@ -83,11 +83,11 @@ func Main(args []string) (int, error) {
|
|||||||
fs := cmd.Flags
|
fs := cmd.Flags
|
||||||
if fs != nil {
|
if fs != nil {
|
||||||
fs.Parse(args[i:])
|
fs.Parse(args[i:])
|
||||||
Context.Flags = Flags{FlagSet: fs}
|
ctx.Flags = Flags{FlagSet: fs}
|
||||||
}
|
}
|
||||||
Context.Name = command
|
ctx.Name = command
|
||||||
|
|
||||||
exitCode, err := cmd.Func(Context)
|
exitCode, err := cmd.Func(ctx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = fmt.Errorf("fatal: %s", err)
|
err = fmt.Errorf("fatal: %s", err)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user