mirror of https://github.com/docker/docs.git
Fix any mac errors due to windows changes
This commit is contained in:
parent
9583791a18
commit
97272b971f
|
@ -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
|
||||
|
|
|
@ -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* () {
|
||||
|
|
Loading…
Reference in New Issue