diff options
author | pink-mist <andreas.guldstrand@gmail.com> | 2013-11-27 12:59:18 -0800 |
---|---|---|
committer | pink-mist <andreas.guldstrand@gmail.com> | 2013-11-27 12:59:18 -0800 |
commit | dc955705aa540f8dc02be36736d6fd647be4af48 (patch) | |
tree | 2976401aa4b41cdb18b0f19425a165c9d3f2a6b9 /SBO-Lib/lib/SBO | |
parent | a653f1d2e639d7636728660ff0470c66b906484d (diff) | |
parent | 8a6753047b9303e5b494a6011f92d02f3940d306 (diff) | |
download | sbotools2-dc955705aa540f8dc02be36736d6fd647be4af48.tar.xz |
Merge pull request #1 from d4wnr4z0r/master
sbotools_1.8
Diffstat (limited to 'SBO-Lib/lib/SBO')
-rw-r--r-- | SBO-Lib/lib/SBO/Lib.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index ed5f74c..fb343ec 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -14,7 +14,7 @@ use strict; use warnings FATAL => 'all'; package SBO::Lib; -our $VERSION = '1.7'; +our $VERSION = '1.8'; require Exporter; our @ISA = qw(Exporter); @@ -181,7 +181,10 @@ sub show_version() { # which is now not needed since this version drops support < 14.0 # but it's already future-proofed, so leave it. sub get_slack_version() { - my %supported = ('14.0' => '14.0'); + my %supported = ( + '14.0' => '14.0', + '14.1' => '14.1', + ); my ($fh, $exit) = open_read '/etc/slackware-version'; if ($exit) { warn $fh; |