Skip to content

Commit

Permalink
Exclude espresso from graal
Browse files Browse the repository at this point in the history
  • Loading branch information
willcohen committed May 5, 2021
1 parent f4f17d8 commit 2b098d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github-com-graalvm.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 2b098d3

Please sign in to comment.