Fix $options -> @options in previous patch. Fix tabs -> spaces.

Acked-by: Seth Arnold <seth.arnold@canonical.com>
Acked-by: Steve Beattie <sbeattie@ubuntu.com>
This commit is contained in:
Seth Arnold 2013-07-09 16:03:09 -07:00
parent 9d5269b601
commit 09c2da3a69

View file

@ -3879,8 +3879,8 @@ sub ask_the_questions() {
$newpath =~ s/\/[^\/]+$/\/\*/;
}
}
if (not $newpath ~~ $options) {
push @options, $newpath;
if (not $newpath ~~ @options) {
push @options, $newpath;
$defaultoption = $#options + 1;
}
}
@ -3897,8 +3897,8 @@ sub ask_the_questions() {
$newpath =~ s/\/[^\/]+(\.[^\/]+)$/\/\*$1/;
}
if (not $newpath ~~ @options) {
push @options, $newpath;
$defaultoption = $#options + 1;
push @options, $newpath;
$defaultoption = $#options + 1;
}
}
} elsif ($ans =~ /\d/) {