CB-7044 Fix typo in prev commit causing check_reqs to always fail.

This commit is contained in:
Andrew Grieve 2014-08-18 15:26:05 -04:00
parent ca8bb75b40
commit c91b272648

View File

@ -31,7 +31,7 @@ var isWindows = process.platform == 'win32';
function forgivingWhichSync(cmd) {
try {
return which.sync(path);
return which.sync(cmd);
} catch (e) {
return '';
}