File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
use anyhow:: bail;
2
2
use canonical_path:: CanonicalPathBuf ;
3
- use clap:: { ArgSettings , Parser } ;
3
+ use clap:: Parser ;
4
4
use libpijul:: pristine:: * ;
5
5
use libpijul:: * ;
6
6
use log:: { debug, error, info, trace} ;
@@ -17,10 +17,10 @@ pub struct Git {
17
17
/// Process this path instead of the current directory, creating a Pijul repository if necessary.
18
18
pub repo_path : Option < PathBuf > ,
19
19
/// Time the import, and output values to this file.
20
- #[ clap( long = "stats" , setting = ArgSettings :: Hidden ) ]
20
+ #[ clap( long = "stats" , hide = true ) ]
21
21
stats : Option < PathBuf > ,
22
22
/// Check only the first n commits processed.
23
- #[ clap( default_value = "0" , setting = ArgSettings :: Hidden ) ]
23
+ #[ clap( default_value = "0" , hide = true ) ]
24
24
check : usize ,
25
25
}
26
26
You can’t perform that action at this time.
0 commit comments