Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

check_modules.pl allow newer versions of node. #2237

Merged
merged 1 commit into from
Nov 7, 2023
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
5 changes: 2 additions & 3 deletions bin/check_modules.pl
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,8 @@ sub check_apps {
my $node_version_str = qx/node -v/;
my ($node_version) = $node_version_str =~ m/v(\d+)\./;

if ($node_version != 16) {
print "\n\n**The version of node should be 16. You have version $node_version";
}
print "\n\n**The version of node should be at least 16. You have version $node_version"
if ($node_version < 16);
}

sub which {
Expand Down