diff options
author | J Pipkin <j@dawnrazor.net> | 2012-09-09 01:37:40 -0500 |
---|---|---|
committer | J Pipkin <j@dawnrazor.net> | 2012-09-09 01:37:40 -0500 |
commit | 2c9b0366fb6622da39088c4f3d64b9a9efa173de (patch) | |
tree | a3a6648f03bae69e7ef43c693db3a5eea0d0cfd4 | |
parent | 9f8acac4b94b90a41a7faf16853b3750f8aa4b50 (diff) | |
download | sbotools2-2c9b0366fb6622da39088c4f3d64b9a9efa173de.tar.xz |
cleanup: removed excess semicolon
-rwxr-xr-x | sboupgrade | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -371,7 +371,7 @@ my $todo_install; FIRST: for my $sbo (@ARGV) { my $name = $compat32 ? "$sbo-compat32" : $sbo; my $inst = get_installed_sbos; - my $inst_names = get_inst_names $inst;; + my $inst_names = get_inst_names $inst; warn "$name already installed\n", next FIRST if $name ~~ @$inst_names; # if compat32 is TRUE, we need to see if the non-compat version exists. if ($compat32) { |