0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00

Fix test-executable-path

This commit is contained in:
Ryan Dahl 2011-08-08 17:35:26 -07:00
parent 2126989a32
commit ab0b1f9f13

View File

@ -26,9 +26,9 @@ var path = require('path');
var isDebug = (process.version.indexOf('debug') >= 0);
var debugPath = path.normalize(path.join(__dirname, '..', '..',
'out', 'Debug', 'node'));
'build', 'debug', 'node'));
var defaultPath = path.normalize(path.join(__dirname, '..', '..',
'out', 'Release', 'node'));
'build', 'default', 'node'));
console.error('debugPath: ' + debugPath);
console.error('defaultPath: ' + defaultPath);