2 Commits

Author SHA1 Message Date
Jay Larson
7fc565d736 Updated version - missed in last check in 2020-08-01 15:41:48 -05:00
Jay Larson
531742438e The following changes were made:
* sl no longer duplicates dependency check message for special packages
  * Removed ROOT and temporary files in SL accidentally checked in previously
2020-08-01 15:38:53 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ our @EXPORT = qw(
$sl $sl
); );
our $VERSION = '0.18'; our $VERSION = '0.17';
############################################################ ############################################################
# #

View File

@@ -633,7 +633,7 @@ elsif ( $command eq 'install' ) {
$string = "coreutils $string"; $string = "coreutils $string";
} }
if ( ! installed( 'sl-base' ) ) { if ( ! installed( 'sl-base' ) ) {
$string =~ 's/(^|\s+)sl-base(\s+|$)//g'; $string =~ s/(^|\s*)sl-base(\s*|$)//g;
$string = "sl-base $string"; $string = "sl-base $string";
} }