Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

N as default for output visualization #219

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading