Skip to content

Commit

Permalink
Issue #2548: satisfy the CodePolicy
Browse files Browse the repository at this point in the history
actually satisfy the CodePolicy for rel-11_0, which is not in conflict
with the CodePolicy for rel-10_0
  • Loading branch information
bschmalhofer committed Oct 4, 2023
1 parent fd19c56 commit bebbac7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bin/otobo.CheckModules.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1470,7 +1470,7 @@ sub CleanVersion {
# replace all special characters with an dot
$Param{Version} =~ s{ [_-] }{.}xmsg;

my @VersionParts = split q{\.}, $Param{Version};
my @VersionParts = split /\./, $Param{Version};

my $CleanedVersion = '';
for my $Count ( 0 .. 4 ) {
Expand Down Expand Up @@ -1603,7 +1603,6 @@ sub PrintCpanfile {
}
}

my @Filters;
say $Indent, "requires '$Module->{Module}'$VersionRequirement;";
say '';

Expand Down

0 comments on commit bebbac7

Please sign in to comment.