fix test262 loc check

This commit is contained in:
Sebastian McKenzie
2015-01-07 13:14:08 +11:00
parent 9287449372
commit 6d7e14fb2b

View File

@@ -7,7 +7,7 @@ var fs = require("fs");
var _ = require("lodash");
var test262Loc = __dirname + "/../vendor/test262";
if (!fs.existsSync(traceurLoc)) {
if (!fs.existsSync(test262Loc)) {
console.error("No vendor/test262 - run `make bootstrap`");
process.exit(1);
}