Skip to content
Draft
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
4 changes: 3 additions & 1 deletion src/Applications/GEOSdas_App/testsuites/runjob.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
Loading