summaryrefslogtreecommitdiff
path: root/makima/src/daemon/cli
diff options
context:
space:
mode:
Diffstat (limited to 'makima/src/daemon/cli')
-rw-r--r--makima/src/daemon/cli/daemon.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/makima/src/daemon/cli/daemon.rs b/makima/src/daemon/cli/daemon.rs
index c779d64..a8c0b4a 100644
--- a/makima/src/daemon/cli/daemon.rs
+++ b/makima/src/daemon/cli/daemon.rs
@@ -38,4 +38,9 @@ pub struct DaemonArgs {
/// Requires bwrap to be installed on the system.
#[arg(long, env = "MAKIMA_DAEMON_BUBBLEWRAP")]
pub bubblewrap: bool,
+
+ /// Skip dependency checks on startup.
+ /// Useful for CI/CD or when you know dependencies are installed.
+ #[arg(long, env = "MAKIMA_DAEMON_SKIP_SETUP_CHECK")]
+ pub skip_setup_check: bool,
}