FS-7988 move -askall to -terse so old -askall behavior is default and old default is now -terse

This commit is contained in:
Anthony Minessale 2015-08-31 11:05:36 -05:00
parent 164c6111a1
commit 0103206f97
1 changed files with 2 additions and 2 deletions

View File

@ -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 <summary> -desc <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});