forked from Mirrors/freeswitch
FS-7988 move -askall to -terse so old -askall behavior is default and old default is now -terse
This commit is contained in:
parent
164c6111a1
commit
0103206f97
|
@ -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});
|
||||
|
|
Loading…
Reference in New Issue