From 348e574154bbb6ec8ecc583a2790a512d0e8aa5f Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Fri, 16 Aug 2024 17:34:54 -0400 Subject: [PATCH] Update wgd.sh --- src/wgd.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wgd.sh b/src/wgd.sh index f17ccbd..e35ebc2 100755 --- a/src/wgd.sh +++ b/src/wgd.sh @@ -207,15 +207,15 @@ _checkPythonVersion(){ return; elif python3.10 --version > /dev/null 2>&1 then - printf "[WGDashboard] %s Found Python 3.10. Will be using python3.10 to install WGDashboard.\n" "$heavy_checkmark" + printf "[WGDashboard] %s Found Python 3.10. Will be using [python3.10] to install WGDashboard.\n" "$heavy_checkmark" pythonExecutable="python3.10" elif python3.11 --version > /dev/null 2>&1 then - printf "[WGDashboard] %s Found Python 3.11. Will be using python3.10 to install WGDashboard.\n" "$heavy_checkmark" + printf "[WGDashboard] %s Found Python 3.11. Will be using [python3.11] to install WGDashboard.\n" "$heavy_checkmark" pythonExecutable="python3.11" elif python3.12 --version > /dev/null 2>&1 then - printf "[WGDashboard] %s Found Python 3.12. Will be using python3.10 to install WGDashboard.\n" "$heavy_checkmark" + printf "[WGDashboard] %s Found Python 3.12. Will be using [python3.12] to install WGDashboard.\n" "$heavy_checkmark" pythonExecutable="python3.12" else printf "[WGDashboard] %s Could not find a compatible version of Python. Current Python is %s.\n" "$heavy_crossmark" "$version"