From 2e387730cbcbc45ad99e52f87f833b5ba9c8adc8 Mon Sep 17 00:00:00 2001 From: Donald Cheng Hong Zou Date: Fri, 3 Sep 2021 14:26:05 -0400 Subject: [PATCH] Update wgd.sh --- src/wgd.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wgd.sh b/src/wgd.sh index 2584b75b..6a1d3b4f 100755 --- a/src/wgd.sh +++ b/src/wgd.sh @@ -18,7 +18,7 @@ help () { } install_wgd(){ - printf "$dashes\n" + printf "%s\n" "$dashes" # Check Python3 version version_pass=$(python3 -c 'import sys; print("1") if (sys.version_info.major == 3 and sys.version_info.minor >= 7) else print("0");') if [ $version_pass == "0" ] @@ -34,7 +34,7 @@ install_wgd(){ printf "| Wireguard Dashboard installed successfully! |\n" printf "| Starting Dashboard |\n" start_wgd - printf "$dashes\n" + printf "%s\n" "$dashes" }