From 2b098d336aec085885fcc28747463bbbae3706ea Mon Sep 17 00:00:00 2001 From: Will Cohen Date: Wed, 5 May 2021 09:51:15 -0400 Subject: [PATCH] Exclude espresso from graal --- src/github-com-graalvm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github-com-graalvm.js b/src/github-com-graalvm.js index 49101f0..4a5204d 100644 --- a/src/github-com-graalvm.js +++ b/src/github-com-graalvm.js @@ -21,7 +21,7 @@ const fetch = require('node-fetch') } for (const asset of release.assets || []) { const url = asset.browser_download_url - if (url.endsWith('.jar') || url.endsWith('.sha256')) { + if (url.endsWith('.jar') || url.endsWith('.sha256') || url.includes('espresso')) { console.error(`skip(ext): ${url}`) continue }