Closed
Description
@mstruebing @klaernie @theoludwig
Hello,
This is a follow-up issue to #409.
In version v3.0.3, .tar.gz
files for Windows were supported, as shown below:
However, in v3.1.0 and v3.1.1, .tar.gz
files for Windows are no longer supported. Instead, only .zip
files are available, as seen in the screenshot below:
In editorconfig-checker.javascript
, the code still tries to locate .tar.gz
files:
const matchedAsset = release.data.assets.find(({ name }) => {
return name.startsWith(releasePrefix) && name.endsWith(".tar.gz")
})
As a result, this causes an error like the one below:
I believe there are two possible solutions:
- Add
.tar.gz
support back to the assets. - Update
editorconfig-checker.javascript
to support resolving.zip
files.
If the second solution is acceptable, I would be happy to create a pull request for it. Please let me know once a decision has been made.
4598