From c9b67757931f9bf89b59ccb076363719f6ffc7d9 Mon Sep 17 00:00:00 2001 From: Donald Cheng Hong Zou Date: Fri, 3 Sep 2021 14:24:38 -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 d8861f5..2584b75 100755 --- a/src/wgd.sh +++ b/src/wgd.sh @@ -18,7 +18,7 @@ help () { } install_wgd(){ - printf $dashes + printf "$dashes\n" # 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 + printf "$dashes\n" }