Fix any mac errors due to windows changes

This commit is contained in:
Jeffrey Morgan 2015-03-31 18:31:35 -04:00
parent 9583791a18
commit 97272b971f
2 changed files with 5 additions and 3 deletions

View File

@ -270,6 +270,8 @@ var SetupStore = assign(Object.create(EventEmitter.prototype), {
step: _currentStep,
message: err.message
});
console.log(err);
console.log(err.stack);
bugsnag.notify('SetupError', err.message, {
error: err,
step: _currentStep

View File

@ -33,9 +33,9 @@ var SetupUtil = {
return;
}
yield fs.chown(util.binsPath(), process.getuid(), '80');
yield fs.chown(util.dockerBinPath(), process.getuid(), '80');
yield fs.chown(util.dockerMachineBinPath(), process.getuid(), '80');
yield fs.chown(util.binsPath(), process.getuid(), 80);
yield fs.chown(util.dockerBinPath(), process.getuid(), 80);
yield fs.chown(util.dockerMachineBinPath(), process.getuid(), 80);
return Promise.resolve();
}),
installVirtualBoxCmd: Promise.coroutine(function* () {