diff options
| author | William Boman <william@redwill.se> | 2023-01-14 12:56:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-14 12:56:31 +0100 |
| commit | 24e78fc945c460ab84abc3d5c596eea0738c5820 (patch) | |
| tree | 5ba8463a047bbba67486736151b171216d197a51 /lua | |
| parent | chore: update generated code (#903) (diff) | |
| download | mason-24e78fc945c460ab84abc3d5c596eea0738c5820.tar mason-24e78fc945c460ab84abc3d5c596eea0738c5820.tar.gz mason-24e78fc945c460ab84abc3d5c596eea0738c5820.tar.bz2 mason-24e78fc945c460ab84abc3d5c596eea0738c5820.tar.lz mason-24e78fc945c460ab84abc3d5c596eea0738c5820.tar.xz mason-24e78fc945c460ab84abc3d5c596eea0738c5820.tar.zst mason-24e78fc945c460ab84abc3d5c596eea0738c5820.zip | |
fix(editorconfig-checker): update Windows assets (#904)
CI failed at https://github.com/mason-org/mason-registry/pull/310.
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/mason-registry/editorconfig-checker/init.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lua/mason-registry/editorconfig-checker/init.lua b/lua/mason-registry/editorconfig-checker/init.lua index e7441621..486c832e 100644 --- a/lua/mason-registry/editorconfig-checker/init.lua +++ b/lua/mason-registry/editorconfig-checker/init.lua @@ -22,8 +22,10 @@ return Pkg.new { when(platform.is.linux_arm64_openbsd, "ec-openbsd-arm64.tar.gz"), when(platform.is.linux_arm64, "ec-linux-arm64.tar.gz"), when(platform.is.linux_x64, "ec-linux-amd64.tar.gz"), - when(platform.is.win_x86, "ec-windows-386.tar.gz"), - when(platform.is.win_x64, "ec-windows-amd64.tar.gz") + when(platform.is.win_x86, "ec-windows-386.exe.tar.gz"), + when(platform.is.win_x64, "ec-windows-amd64.exe.tar.gz"), + when(platform.is.win_arm64, "ec-windows-arm64.exe.tar.gz"), + when(platform.is.win_arm, "ec-windows-arm.exe.tar.gz") ), } source.with_receipt() |
