sbotools2

Maintenance fork of the original sbotools version 2
Log | Files | Refs | README

commit 5039c44c24a87a1c456d7d8b9db0b4bcfa31a3a0
parent 2c9b0366fb6622da39088c4f3d64b9a9efa173de
Author: J Pipkin <j@dawnrazor.net>
Date:   Sun,  9 Sep 2012 01:44:54 -0500

fixed bug where sboupgrade wouldn't warn about already installed packages

Diffstat:
Msboupgrade | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sboupgrade b/sboupgrade @@ -372,7 +372,7 @@ FIRST: for my $sbo (@ARGV) { my $name = $compat32 ? "$sbo-compat32" : $sbo; my $inst = get_installed_sbos; my $inst_names = get_inst_names $inst; - warn "$name already installed\n", next FIRST if $name ~~ @$inst_names; + warn "$name already installed.\n" and next FIRST if $name ~~ @$inst_names; # if compat32 is TRUE, we need to see if the non-compat version exists. if ($compat32) { my $inst = get_installed_sbos;