diff options
author | J Pipkin <j@dawnrazor.net> | 2012-09-09 01:44:54 -0500 |
---|---|---|
committer | J Pipkin <j@dawnrazor.net> | 2012-09-09 01:44:54 -0500 |
commit | 5039c44c24a87a1c456d7d8b9db0b4bcfa31a3a0 (patch) | |
tree | 385e3b6dcda3aea845580d8524128b475ff3482a | |
parent | 2c9b0366fb6622da39088c4f3d64b9a9efa173de (diff) | |
download | sbotools2-5039c44c24a87a1c456d7d8b9db0b4bcfa31a3a0.tar.xz |
fixed bug where sboupgrade wouldn't warn about already installed packages
-rwxr-xr-x | sboupgrade | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |