Comparing version 0.0.16 to 0.0.17
{ | ||
"name": "awsass", | ||
"description": "AWSASS is an assistant to AWS, mostly for running better scripts.", | ||
"version": "0.0.16", | ||
"version": "0.0.17", | ||
"author": "Jsonize", | ||
@@ -6,0 +6,0 @@ "repository": "https://github.com/jsonize/awsass", |
@@ -514,2 +514,8 @@ const AWS = require("aws-sdk"); | ||
let smallestVersionId = resourcesResponse.items.find(item => item.path === smallestVersion.proxyKey); | ||
if (!smallestVersionId) { | ||
console.log("Couldn't find smallest version id", smallestVersionId); | ||
console.log(resourcesResponse.items); | ||
callback(undefined, result); | ||
return; | ||
} | ||
let parent = undefined; | ||
@@ -516,0 +522,0 @@ let childCount = 0; |
32678
649