diff options
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 5 | 
1 files changed, 3 insertions, 2 deletions
| @@ -6,7 +6,8 @@ use clap::{Parser, Subcommand};  pub struct Cli {      #[arg(short, long, default_value = "dots.toml")]      pub config: Option<PathBuf>, -     +    #[arg(short, long)] +    pub no_hostname_check: bool,      #[command(subcommand)]      pub command: CliCommand   } @@ -17,4 +18,4 @@ pub enum CliCommand {      Deploy,      #[clap(about = "Unlinks (tries to remove) a dots deployment")]      Unlink -}
\ No newline at end of file +} | 
