aboutsummaryrefslogtreecommitdiff
path: root/src/cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index f43bda4..bb0c621 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -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
+}