1
0
mirror of https://github.com/sharkdp/bat synced 2026-08-09 19:51:48 +00:00

Add --cache-dir option

This commit is contained in:
sharkdp
2019-02-07 21:19:20 +01:00
committed by David Peter
parent 6523bbf62f
commit 54143d1403
3 changed files with 13 additions and 2 deletions
+6 -1
View File
@@ -374,9 +374,14 @@ pub fn build_app(interactive_output: bool) -> ClapApp<'static, 'static> {
.short("d")
.help("Show bat's configuration directory."),
)
.arg(
Arg::with_name("cache-dir")
.long("cache-dir")
.help("Show bat's cache directory."),
)
.group(
ArgGroup::with_name("cache-actions")
.args(&["init", "clear", "config-dir"])
.args(&["init", "clear", "config-dir", "cache-dir"])
.required(arg_group_required),
)
.arg(