mirror of https://github.com/docker/docs.git
Better error & retry tracking in Kitematic
Signed-off-by: Jeffrey Morgan <jmorganca@gmail.com>
This commit is contained in:
parent
191045351b
commit
5426eeaafd
|
|
@ -34,7 +34,9 @@ var VirtualBox = {
|
||||||
reject('VBoxManage -v output format not recognized.');
|
reject('VBoxManage -v output format not recognized.');
|
||||||
}
|
}
|
||||||
resolve(match[1]);
|
resolve(match[1]);
|
||||||
}).catch(reject);
|
}).catch(() => {
|
||||||
|
resolve(null);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
poweroffall: function () {
|
poweroffall: function () {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue