Skip to content

Commit

Permalink
Fix k9s download
Browse files Browse the repository at this point in the history
  • Loading branch information
myhro committed Dec 28, 2023
1 parent b193810 commit d443f2f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tables/arch.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ var Arch = map[string]map[string]map[string]string{
},
K9s: {
"darwin": {
"amd64": "x86_64",
"amd64": "amd64",
},
"linux": {
"amd64": "x86_64",
"amd64": "amd64",
"arm64": "arm64",
},
},
Expand Down
4 changes: 2 additions & 2 deletions tools/asset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ func (s *AssetTestSuite) TestName() {
name: K9s,
arch: "amd64",
os: "linux",
version: "v0.25.4",
filename: "k9s_Linux_x86_64.tar.gz",
version: "v0.30.4",
filename: "k9s_Linux_amd64.tar.gz",
},
{
name: UPX,
Expand Down
4 changes: 2 additions & 2 deletions tools/runtime_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,13 +172,13 @@ func (s *RuntimeTestSuite) TestK9sRuntime() {
{
arch: "amd64",
os: "linux",
archOut: "x86_64",
archOut: "amd64",
osOut: "Linux",
},
{
arch: "amd64",
os: "darwin",
archOut: "x86_64",
archOut: "amd64",
osOut: "Darwin",
},
}
Expand Down

0 comments on commit d443f2f

Please sign in to comment.