1
0
mirror of https://github.com/donaldzou/WGDashboard.git synced 2024-06-30 22:50:14 +02:00

Update wgd.sh

This commit is contained in:
Donald Cheng Hong Zou 2021-09-03 14:24:38 -04:00
parent a6eaf30c2b
commit c9b6775793

View File

@ -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"
}