From facf37303cba47c355475647bd30176871360026 Mon Sep 17 00:00:00 2001 From: Gio <43544549+romer8@users.noreply.github.com> Date: Fri, 15 Nov 2024 12:50:04 -0700 Subject: [PATCH] changed to N as a default (#219) Co-authored-by: romer8 --- viewOnTethys.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/viewOnTethys.sh b/viewOnTethys.sh index 7a93380..4809840 100755 --- a/viewOnTethys.sh +++ b/viewOnTethys.sh @@ -502,12 +502,12 @@ _run_tethys(){ # Create tethys portal create_tethys_portal(){ while true; do - echo -e "${YELLOW}Visualize outputs using the Tethys Platform (https://www.tethysplatform.org/)? (y/N, default: y):${RESET}" + echo -e "${YELLOW}Visualize outputs using the Tethys Platform (https://www.tethysplatform.org/)? (y/N, default: n):${RESET}" read -r visualization_choice - # Default to 'y' if input is empty + # Default to 'N' if input is empty if [[ -z "$visualization_choice" ]]; then - visualization_choice="y" + visualization_choice="n" fi # Check for valid input