mirror of https://github.com/docker/docs.git
Fixed missing callback for last setup step.
This commit is contained in:
parent
29fbc0cb58
commit
3c99d4e0d0
|
@ -118,7 +118,7 @@ Installer.steps = [
|
||||||
{
|
{
|
||||||
run: function (callback) {
|
run: function (callback) {
|
||||||
reloadDefaultContainers(function (err) {
|
reloadDefaultContainers(function (err) {
|
||||||
if (err) { console.error(err); }
|
callback(err);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
pastMessage: 'Started the Boot2Docker VM',
|
pastMessage: 'Started the Boot2Docker VM',
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"window": {
|
"window": {
|
||||||
"show": false,
|
"show": false,
|
||||||
"toolbar": true,
|
"toolbar": false,
|
||||||
"frame": true,
|
"frame": false,
|
||||||
"width": 800,
|
"width": 800,
|
||||||
"height": 600,
|
"height": 600,
|
||||||
"resizable": false
|
"resizable": false
|
||||||
|
|
Loading…
Reference in New Issue