sbotools2

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

commit 3e51f95249ee3a21747f89c8a385ba5534d91043
parent dd1d30cfe657e86d6281ecb24b11cbe6833fe95b
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date:   Wed,  1 Jun 2016 00:09:58 +0200

sbocheck: no reason to guard against overwriting

the version should be the same in either case

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

diff --git a/sbocheck b/sbocheck @@ -61,7 +61,7 @@ sub get_update_list { } for my $update (@outdated) { my $name = $update->{name}; - $updates{$name}{installed} //= $update->{version}; + $updates{$name}{installed} = $update->{version}; $updates{$name}{sbo} = $update->{orig}; $updates{$name}{local} = 1; }