From 24e5a0f416bd2f1bf79b94a462d10872c2ded611 Mon Sep 17 00:00:00 2001 From: Philip Ellis Date: Wed, 6 Sep 2023 10:24:41 -0500 Subject: [PATCH] removed gaurd from script --- postman-script/upload-script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postman-script/upload-script.js b/postman-script/upload-script.js index 4fe0518..a825a0c 100644 --- a/postman-script/upload-script.js +++ b/postman-script/upload-script.js @@ -115,7 +115,7 @@ async function main() { try { const response = await getCollections(); for (let collection of response.collections) { - if (collection.name.includes(args[3]) && collection.id == "b108a9b1-e5ec-4a83-b4f5-02fd7126bbfc") { + if (collection.name.includes(args[3])) { console.log(collection); const response = await deleteCollection(collection.id); console.log(response);