From 91ebdf79d7e94002ca7b4f3d2adee0756771aa72 Mon Sep 17 00:00:00 2001 From: rawdaGastan Date: Mon, 23 Oct 2023 13:45:48 +0300 Subject: [PATCH] add docs for strip pass --- README.md | 2 ++ src/main.rs | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 90870ae..a2ba6bb 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,8 @@ Arguments: Options: -m, --meta path to metadata file (flist) -s, --store store url in the format [xx-xx=]. the range xx-xx is optional and used for sharding. the URL is per store type, please check docs for more information + --no-strip-password no_strip_password strips password from store url, otherwise password will be stored in the fl and + then shipped. Some stores like ZDB has a public namespace which means writing requires a password -h, --help Print help ``` diff --git a/src/main.rs b/src/main.rs index cfb9b57..eeeb5fe 100644 --- a/src/main.rs +++ b/src/main.rs @@ -67,8 +67,8 @@ struct PackOptions { #[clap(short, long, action=ArgAction::Append)] store: Vec, - /// no_strip_password strips password from store url, otherwise password will be stored in the fl and then shipped - /// some stores like ZDB has a public namespace which means writing requires a password + /// no_strip_password strips password from store url, otherwise password will be stored in the fl and then shipped. + /// Some stores like ZDB has a public namespace which means writing requires a password #[clap(long, default_value_t = false)] no_strip_password: bool,