Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bin/check_modules.pl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ =head1 SYNOPSIS
=item C<ubuntu>

Tested on ubuntu 24. May work for other distributions using the apt package
manager
manager

=item C<rhel>

Expand Down Expand Up @@ -746,8 +746,8 @@ sub check_apps {
my $node_version_str = qx/node -v/;
my ($node_version) = $node_version_str =~ m/v(\d+)\./;

say "\n**The version of node should be at least 18. You have version $node_version."
if $node_version < 18;
say "\n**The version of node should be at least 20. You have version $node_version."
if $node_version < 20;

return;
}
Expand Down
Loading