[fix] Ignore npm version errors when installing dependencies for examples

This commit is contained in:
indexzero 2012-07-26 04:53:48 -04:00
parent c4a7b15843
commit a454666e7a

View File

@ -38,7 +38,7 @@ exports.shouldHaveDeps = function () {
return next();
}
var child = spawn('npm', ['install'], {
var child = spawn('npm', ['install', '-f'], {
cwd: examplesDir
});