Skip to content

Commit afe6ef2

Browse files
committed
Make check_modules.pl check for node version 20 or newer.
Node 18 is deprecated, and our dependencies now require node 20 or newer.
1 parent 3567f60 commit afe6ef2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

bin/check_modules.pl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ =head1 SYNOPSIS
3030
=item C<ubuntu>
3131
3232
Tested on ubuntu 24. May work for other distributions using the apt package
33-
manager
33+
manager
3434
3535
=item C<rhel>
3636
@@ -746,8 +746,8 @@ sub check_apps {
746746
my $node_version_str = qx/node -v/;
747747
my ($node_version) = $node_version_str =~ m/v(\d+)\./;
748748

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

752752
return;
753753
}

0 commit comments

Comments
 (0)