Skip to content

Commit

Permalink
fix: node18.19 broken binaries
Browse files Browse the repository at this point in the history
Fixes #28
  • Loading branch information
robertsLando committed Feb 12, 2024
1 parent 6a27f72 commit 2e99185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prelude/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -1879,7 +1879,7 @@ function payloadFileSync(pointer) {
im = require('internal/module');
makeRequireFunction = im.makeRequireFunction;
} else {
if (NODE_VERSION_MAJOR <= 18) {
if (NODE_VERSION_MAJOR < 18) {
im = require('internal/modules/cjs/helpers');
} else {
im = require('internal/modules/helpers');
Expand Down

0 comments on commit 2e99185

Please sign in to comment.