Skip to content

Commit

Permalink
fix: wrong help menu package names (#11611)
Browse files Browse the repository at this point in the history
  • Loading branch information
MARCROCK22 authored Jun 6, 2024
1 parent ac5f2e9 commit e5ff1fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1031,10 +1031,10 @@ pub const HelpCommand = struct {

const args = .{
packages_to_x_filler[package_x_i],
packages_to_create_filler[package_create_i],
packages_to_add_filler[package_add_i],
packages_to_remove_filler[package_remove_i],
packages_to_add_filler[(package_add_i + 1) % packages_to_add_filler.len],
packages_to_create_filler[package_create_i],
};

switch (reason) {
Expand Down

0 comments on commit e5ff1fd

Please sign in to comment.