npm install nodegit fails with that error.
What I see is that in package.json there is:
"scripts": {
"install": "node lifecycleScripts/install"
}
AFAIK this is wrong. Depending on the NPM version (and not sure what else) the install script is executed before moving the lib to its proper location under node_modules.
postinstall is the way to go.
npm install nodegitfails with that error.What I see is that in package.json there is:
AFAIK this is wrong. Depending on the NPM version (and not sure what else) the
installscript is executed before moving the lib to its proper location undernode_modules.postinstallis the way to go.