Skip to content

Commit

Permalink
fix network cmd path
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantani committed Nov 19, 2024
1 parent 76c26ea commit e95a79d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func (app) Execute(ctx context.Context, c *plugin.ExecutedCommand, api plugin.Cl
// correctly.
// Remove the first arg "ignite" and "network" from OSArgs because our network
// command root is "network" not "ignite".
os.Args = c.OsArgs[2:]
os.Args = c.OsArgs[1:]
return cmd.NewNetwork().Execute()
}

Expand Down

0 comments on commit e95a79d

Please sign in to comment.