in createmobilespec/createmobilespec.js [331:343]
function verifyNpmLinkOf(linkedModule, installedModule) {
cdInto(installedModule);
var linkedPath = shelljs.pwd() + path.sep + "node_modules" + path.sep + linkedModule;
if (fs.existsSync(linkedPath)) {
var myStat = fs.lstatSync(linkedPath);
if (!myStat.isSymbolicLink()) {
throw new Error('Module ' + linkedModule + ' installed in ' + installedModule + ' is not npm-linked. I recommend you run "coho npm-link".');
}
} else {
throw new Error('Module ' + linkedModule + ' is not installed at all (direct or npm-linked) in ' + installedModule);
}
cdOutOf();
}