Skip to content

Commit 7af34d2

Browse files
authored
Merge pull request #358 from AkibaAT/bug/353
Change autoconfiguration of node.js binary path to node
2 parents b684b6f + f135a1a commit 7af34d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/de/php_perfect/intellij/ddev/node/AutoConfigureNodeInterpreterListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void onDescriptionChanged(@Nullable Description description) {
3333
return;
3434
}
3535

36-
final NodeInterpreterConfig nodeInterpreterConfig = new NodeInterpreterConfig(description.getName(), composeFile.getPath(), "/usr/bin/node");
36+
final NodeInterpreterConfig nodeInterpreterConfig = new NodeInterpreterConfig(description.getName(), composeFile.getPath(), "node");
3737
NodeInterpreterProvider.getInstance(this.project).configureNodeInterpreter(nodeInterpreterConfig);
3838
}
3939
}

0 commit comments

Comments
 (0)