Skip to content

Commit

Permalink
Fix list.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Nov 15, 2023
1 parent 54ccbf9 commit 7704b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn main() -> MainResult {
Commands::Completions(args) => app.execute_with_args(commands::completions, args),
Commands::Install(args) => app.execute_with_args(commands::install, args),
Commands::InstallGlobal(args) => app.execute_with_args(commands::install_global, args),
Commands::List(args) => app.execute_with_args(commands::tool::list, args),
Commands::List(args) => app.execute_with_args(commands::list, args),
Commands::ListGlobal(args) => app.execute_with_args(commands::list_global, args),
Commands::ListRemote(args) => app.execute_with_args(commands::list_remote, args),
Commands::Migrate(args) => app.execute_with_args(commands::migrate, args),
Expand Down

0 comments on commit 7704b7d

Please sign in to comment.