From b6be2897e6d640a7b29a9e06f657ecc7499d3afc Mon Sep 17 00:00:00 2001 From: Weiyuan Jiang Date: Thu, 12 Mar 2026 12:04:30 -0400 Subject: [PATCH] no check for automation --- src/Applications/GEOSdas_App/testsuites/runjob.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Applications/GEOSdas_App/testsuites/runjob.pl b/src/Applications/GEOSdas_App/testsuites/runjob.pl index 5ae6d90f..b849721a 100644 --- a/src/Applications/GEOSdas_App/testsuites/runjob.pl +++ b/src/Applications/GEOSdas_App/testsuites/runjob.pl @@ -815,7 +815,9 @@ sub run_fvsetup { if ($verify) { print "\nUnless you are sure the input file is okay, you should quit" . " and run the checkinput utility before continuing.\n"; - $ans = query("Continue (y/n)?", "n"); + if ($nocheck) { $dflt = "y" } + else { $dflt = "n" } + $ans = query("Continue (y/n)?", $dflt); quit("Quitting.") if neg($ans); }