We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ein tools
ein tool
1 parent ee7b5bb commit 7063f5bCopy full SHA for 7063f5b
src/porcelain/main.rs
@@ -35,7 +35,7 @@ pub fn main() -> Result<()> {
35
),
36
Subcommands::Init { directory } => core::repository::init(directory).map(|_| ()),
37
#[cfg(feature = "gitoxide-core-tools")]
38
- Subcommands::Tools(tool) => match tool {
+ Subcommands::Tool(tool) => match tool {
39
crate::porcelain::options::ToolCommands::EstimateHours(crate::porcelain::options::EstimateHours {
40
working_dir,
41
refname,
src/porcelain/options.rs
@@ -35,7 +35,7 @@ pub enum Subcommands {
/// A selection of useful tools
#[clap(subcommand)]
- Tools(ToolCommands),
+ Tool(ToolCommands),
#[cfg(debug_assertions)]
Panic,
}
0 commit comments