diff options
Diffstat (limited to 'bin/apt-why')
-rwxr-xr-x | bin/apt-why | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/apt-why b/bin/apt-why index 69802bf..20abd5c 100755 --- a/bin/apt-why +++ b/bin/apt-why @@ -14,7 +14,7 @@ my $all = 0; my @deptypes = ('Depends', 'Recommends', 'Suggests'); GetOptions( 'all!' => \$all, - 'deptype=s' => sub {shift; @deptypes = split(/,/, shift)}, + 'deptype=s' => sub {@deptypes = split(/,/, $_[1])}, 'depth=i' => \$max_depth, 'h|?|help' => \&usage, ); |