From 73e0b12c22a0509ef48fcd4b505bd420479ec3a6 Mon Sep 17 00:00:00 2001 From: Francesco Cogno Date: Sun, 11 Oct 2020 16:48:08 +0200 Subject: [PATCH] added missing startup flag --- src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main.rs b/src/main.rs index 82e2a8f..a5f6aad 100644 --- a/src/main.rs +++ b/src/main.rs @@ -135,6 +135,12 @@ async fn main() { .help("verbose logging") .takes_value(false), ) + .arg( + Arg::with_name("prepend_sudo") + .short("a") + .help("Prepend sudo to the wg show commands") + .takes_value(false), + ) .arg( Arg::with_name("separate_allowed_ips") .short("s")