sbotools2

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

commit 905426386fe69a1bc51739a46509c0e9b588e1b1
parent 64106e37b4220a24b57f98bea7306ee3c46822f2
Author: Jacob Pipkin <j@dawnrazor.net>
Date:   Wed,  4 Jul 2012 14:05:38 -0500

bug fix to last change...

Diffstat:
MSBO-Lib/lib/SBO/Lib.pm | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm @@ -113,7 +113,7 @@ sub get_slack_version { close $fh; my $version = ($line =~ /\s+(\d+[^\s]+)$/)[0]; die "Unsupported Slackware version: $version\n" - unless $version ~~ %supported; + unless $version + 0 ~~ %supported; return $supported{$version}; }