Skip to content

Commit

Permalink
changed to N as a default (#219)
Browse files Browse the repository at this point in the history
Co-authored-by: romer8 <[email protected]>
  • Loading branch information
romer8 and romer8 authored Nov 15, 2024
1 parent b2f6575 commit facf373
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions viewOnTethys.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit facf373

Please sign in to comment.