Skip to content

Commit

Permalink
Fix LTS node
Browse files Browse the repository at this point in the history
  • Loading branch information
willnode committed Oct 31, 2024
1 parent 75aefde commit af87758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/executor/runnercode.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export async function runConfigCodeFeatures(key, value, writeLog, domaindata, ss
} else {
if (value == "latest" || value == "current") {
arg = "node";
} else if (!value || value == "stable") {
} else if (!value || value == "stable" || value == "lts") {
arg = "--lts";
} else {
arg = value;
Expand Down

0 comments on commit af87758

Please sign in to comment.