mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
20 lines
493 B
JavaScript
20 lines
493 B
JavaScript
require("../common");
|
|
|
|
path = require("path");
|
|
|
|
isDebug = (process.version.indexOf('debug') >= 0);
|
|
|
|
nodePath = path.join(__dirname,
|
|
"..",
|
|
"..",
|
|
"build",
|
|
isDebug ? 'debug' : 'default',
|
|
isDebug ? 'node_g' : 'node');
|
|
nodePath = path.normalize(nodePath);
|
|
|
|
console.log('nodePath: ' + nodePath);
|
|
console.log('process.execPath: ' + process.execPath);
|
|
|
|
|
|
assert.equal(nodePath, process.execPath);
|