diff --git a/sn_node_manager/src/bin/cli/main.rs b/sn_node_manager/src/bin/cli/main.rs index 9c125f0e32..4a2ff8ccd0 100644 --- a/sn_node_manager/src/bin/cli/main.rs +++ b/sn_node_manager/src/bin/cli/main.rs @@ -138,6 +138,8 @@ pub enum SubCmd { user: Option, /// Provide a specific version of safenode to be installed. /// + /// The version number should be in the form X.Y.Z, with no 'v' prefix. + /// /// The binary will be downloaded. #[clap(long)] version: Option, @@ -177,6 +179,8 @@ pub enum SubCmd { faucet_path: Option, /// The version of the faucet to use. /// + /// The version number should be in the form X.Y.Z, with no 'v' prefix. + /// /// The version and path arguments are mutually exclusive. #[clap(long)] faucet_version: Option, @@ -192,6 +196,8 @@ pub enum SubCmd { node_path: Option, /// The version of safenode to use. /// + /// The version number should be in the form X.Y.Z, with no 'v' prefix. + /// /// The version and path arguments are mutually exclusive. #[clap(long)] node_version: Option, @@ -249,6 +255,8 @@ pub enum SubCmd { faucet_path: Option, /// The version of the faucet to use. /// + /// The version number should be in the form X.Y.Z, with no 'v' prefix. + /// /// The version and path arguments are mutually exclusive. #[clap(long, conflicts_with = "build")] faucet_version: Option, @@ -264,6 +272,8 @@ pub enum SubCmd { node_path: Option, /// The version of safenode to use. /// + /// The version number should be in the form X.Y.Z, with no 'v' prefix. + /// /// The version and path arguments are mutually exclusive. #[clap(long, conflicts_with = "build")] node_version: Option, @@ -370,6 +380,8 @@ pub enum SubCmd { #[clap(long, conflicts_with = "version")] url: Option, /// Upgrade to a specific version rather than the latest version. + /// + /// The version number should be in the form X.Y.Z, with no 'v' prefix. #[clap(long)] version: Option, }, @@ -419,6 +431,8 @@ pub enum DaemonSubCmd { url: Option, /// Provide a specific version of the daemon to be installed. /// + /// The version number should be in the form X.Y.Z, with no 'v' prefix. + /// /// The binary will be downloaded. #[clap(long)] version: Option, @@ -479,6 +493,8 @@ pub enum FaucetSubCmd { url: Option, /// Provide a specific version of the faucet to be installed. /// + /// The version number should be in the form X.Y.Z, with no 'v' prefix. + /// /// The binary will be downloaded. #[clap(long)] version: Option, @@ -529,6 +545,8 @@ pub enum FaucetSubCmd { #[clap(long, conflicts_with = "version")] url: Option, /// Upgrade to a specific version rather than the latest version. + /// + /// The version number should be in the form X.Y.Z, with no 'v' prefix. #[clap(long)] version: Option, },