Skip to content

Commit

Permalink
fix(editorconfig-checker): update Windows assets (#904)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman authored Jan 14, 2023
1 parent 39203c8 commit 24e78fc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lua/mason-registry/editorconfig-checker/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 24e78fc

Please sign in to comment.