cli: expose `rad fetch`

Make `rad fetch` accessible via the command line.  It appears to be
accidently left out.
This commit is contained in:
Slack Coder 2023-03-03 09:59:45 -05:00
parent 9d244b221a
commit dd7e3923b5
1 changed files with 8 additions and 0 deletions

View File

@ -158,6 +158,14 @@ fn run_other(exe: &str, args: &[OsString]) -> Result<(), Option<anyhow::Error>>
args.to_vec(),
);
}
"fetch" => {
term::run_command_args::<rad_fetch::Options, _>(
rad_fetch::HELP,
"Fetch",
rad_fetch::run,
args.to_vec(),
);
}
"help" => {
term::run_command_args::<rad_help::Options, _>(
rad_help::HELP,