diff options
author | Florian Klink <flokli@flokli.de> | 2023-09-05T20·58+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-09-08T16·13+0000 |
commit | ec22a80f262e3583cbb0bec63ab67e61d1dc00d3 (patch) | |
tree | 98711843734a5ec0cb329aeefe15400fe359ff30 | |
parent | e7fc15c180c16a4131f997ac50daf682fc511940 (diff) |
docs(tvix/store/fuse): add more comment to list_root arg r/6568
Forgot to squash this into cl/9217. Change-Id: Id5a87cbe729592f3b53e8c329b6890519f5da319 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9272 Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de> Reviewed-by: tazjin <tazjin@tvl.su>
-rw-r--r-- | tvix/store/src/bin/tvix-store.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tvix/store/src/bin/tvix-store.rs b/tvix/store/src/bin/tvix-store.rs index c11af5765bd9..3e1c0ef9ae75 100644 --- a/tvix/store/src/bin/tvix-store.rs +++ b/tvix/store/src/bin/tvix-store.rs @@ -92,6 +92,8 @@ enum Commands { path_info_service_addr: String, /// Whether to list elements at the root of the mount point. + /// This is useful if your PathInfoService doesn't provide an + /// (exhaustive) listing. #[clap(long, short, action)] list_root: bool, }, |