From 0103206f9714c0448b9a34cfabb77a870c3e6623 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 31 Aug 2015 11:05:36 -0500 Subject: [PATCH] FS-7988 move -askall to -terse so old -askall behavior is default and old default is now -terse --- support-d/utils/filebug.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support-d/utils/filebug.pl b/support-d/utils/filebug.pl index 6da941e733..862f0139dd 100755 --- a/support-d/utils/filebug.pl +++ b/support-d/utils/filebug.pl @@ -77,7 +77,7 @@ GetOptions( 'type=s' => \$opts{type}, 'versions=s' => \$opts{versions}, 'noedit' => \$opts{noedit}, - 'askall' => \$opts{askall}, + 'terse' => \$opts{terse}, 'debug' => \$opts{debug}, ) or die "Usage: $0 -summary -desc [-debug] ....\n"; @@ -166,7 +166,7 @@ if (!$opts{hash}) { } } -if ($opts{askall}) { +if (!$opts{terse}) { $opts{project} = getfield("Project: ", $opts{project}); $opts{type} = getfield("Type: ", $opts{type}); $opts{versions} = getfield("Versions: ", $opts{versions});