Skip to content

Commit 6fcb20b

Browse files
author
fossdd
committed
Update pijul
1 parent 6807433 commit 6fcb20b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pijul/src/commands/git.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use anyhow::bail;
22
use canonical_path::CanonicalPathBuf;
3-
use clap::{ArgSettings, Parser};
3+
use clap::Parser;
44
use libpijul::pristine::*;
55
use libpijul::*;
66
use log::{debug, error, info, trace};
@@ -17,10 +17,10 @@ pub struct Git {
1717
/// Process this path instead of the current directory, creating a Pijul repository if necessary.
1818
pub repo_path: Option<PathBuf>,
1919
/// Time the import, and output values to this file.
20-
#[clap(long = "stats", setting = ArgSettings::Hidden)]
20+
#[clap(long = "stats", hide = true)]
2121
stats: Option<PathBuf>,
2222
/// Check only the first n commits processed.
23-
#[clap(default_value = "0", setting = ArgSettings::Hidden)]
23+
#[clap(default_value = "0", hide = true)]
2424
check: usize,
2525
}
2626

0 commit comments

Comments
 (0)