This commit is contained in:
Jeff Morgan 2014-09-01 18:12:37 -07:00
parent 2fef899a4a
commit 07ec123939
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ Boot2Docker.stop = function (callback) {
}; };
Boot2Docker.erase = function (callback) { Boot2Docker.erase = function (callback) {
var VMFileLocation = path.join(getHomePath(), 'VirtualBox\\ VMs/boot2docker-vm'); var VMFileLocation = path.join(Util.getHomePath(), 'VirtualBox\\ VMs/boot2docker-vm');
exec('rm -rf ' + VMFileLocation, function (err) { exec('rm -rf ' + VMFileLocation, function (err) {
callback(err); callback(err);
}); });
@ -85,7 +85,7 @@ Boot2Docker.start = function (callback) {
self.injectUtilities(function (err) { self.injectUtilities(function (err) {
callback(err); callback(err);
}); });
}) });
} else { } else {
callback(err); callback(err);
} }