From 0240f74f47c55a53cba3b3f7492e5f2622f6a365 Mon Sep 17 00:00:00 2001 From: Pagan Gazzard Date: Wed, 15 Oct 2014 19:08:50 +0100 Subject: [PATCH] Fix reference error when failing to delete containers. --- src/application.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/application.coffee b/src/application.coffee index d08a2c1c..92e9f549 100644 --- a/src/application.coffee +++ b/src/application.coffee @@ -330,7 +330,7 @@ cleanupContainersAndImages = -> .then -> console.log('Deleted container:', containerInfo.Id, containerInfo.Image) .catch (err) -> - console.log('Error deleting container:', containerInfo.Id, image.Image, err) + console.log('Error deleting container:', containerInfo.Id, containerInfo.Image, err) .then -> # And then clean up the images. docker.listImagesAsync()