diff options
Diffstat (limited to 'src/librustpkg/context.rs')
| -rw-r--r-- | src/librustpkg/context.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/librustpkg/context.rs b/src/librustpkg/context.rs index 51b42869c75..5362ca2c932 100644 --- a/src/librustpkg/context.rs +++ b/src/librustpkg/context.rs @@ -229,12 +229,13 @@ pub enum Command { BuildCmd, CleanCmd, DoCmd, + HelpCmd, InfoCmd, + InitCmd, InstallCmd, ListCmd, PreferCmd, TestCmd, - InitCmd, UninstallCmd, UnpreferCmd, } @@ -246,6 +247,7 @@ impl FromStr for Command { &"build" => Some(BuildCmd), &"clean" => Some(CleanCmd), &"do" => Some(DoCmd), + &"help" => Some(HelpCmd), &"info" => Some(InfoCmd), &"install" => Some(InstallCmd), &"list" => Some(ListCmd), |
