From 7257d3378da08972d26d2729d41f92db167e6f1b Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 14 Dec 2023 11:01:04 -0500 Subject: [PATCH] Double SUDO --- configs/shells/bash/macros.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/shells/bash/macros.sh b/configs/shells/bash/macros.sh index 3a981ec..948ccc7 100644 --- a/configs/shells/bash/macros.sh +++ b/configs/shells/bash/macros.sh @@ -165,7 +165,7 @@ wg-reload() { if [ $# != 1 ]; then echo "Usage: wg-reload " else - sudo wg syncconf $1 <(wg-quick strip $1) + sudo wg syncconf $1 <(sudo wg-quick strip $1) fi }