diff options
author | Anillc | 2024-06-09 03:23:01 +0800 |
---|---|---|
committer | Anillc | 2024-06-10 18:59:45 +0800 |
commit | ddf42d723837cb8545aced7980f892947408e234 (patch) | |
tree | 08f57664cf418fff99fa97bb92285d61a1d021cf /src | |
parent | b3ea6f333f9057b77efd9091119ba67089399ced (diff) |
allow --ssh-opts that starts with hyphen
Diffstat (limited to 'src')
-rw-r--r-- | src/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -68,7 +68,7 @@ pub struct Opts { #[clap(long)] profile_user: Option<String>, /// Override the SSH options used - #[clap(long)] + #[clap(long, allow_hyphen_values = true)] ssh_opts: Option<String>, /// Override if the connecting to the target node should be considered fast #[clap(long)] |