removed reference to local node installation

This commit is contained in:
Christian Gudrian 2016-10-12 15:56:40 +02:00
parent 75dd652d7a
commit 29c1a9f222
1 changed files with 1 additions and 1 deletions

View File

@ -413,7 +413,7 @@ public abstract class BaseTest {
}
private String locateTool(String tool) {
String[] roots = { "/usr/bin/", "/usr/local/bin/", "/Users/christian/.nvm/versions/node/v6.6.0/bin/" };
String[] roots = { "/usr/bin/", "/usr/local/bin/" };
for (String root : roots) {
if (new File(root + tool).exists()) {
return root + tool;