Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Xiaoxuan Wang <[email protected]>
  • Loading branch information
wangxiaoxuan273 committed Jun 6, 2024
1 parent 7eef4c8 commit f237929
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/data/releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
"checksum": "054685703cb0c66e51f8143e3bbd3976e217d3d595f0593db43b6dd451e43329",
"url": "https://github.com/oras-project/oras/releases/download/v1.2.0/oras_1.2.0_linux_armv7.tar.gz"
},
"ppc64": {
"ppc64le": {
"checksum": "af5ee50434c7263b1460978af83e7690570e8999678fae9db6c5dbb38467fed5",
"url": "https://github.com/oras-project/oras/releases/download/v1.2.0/oras_1.2.0_linux_ppc64le.tar.gz"
},
Expand Down
2 changes: 1 addition & 1 deletion src/lib/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export function mapArch(): string {
case 'arm64':
return 'arm64';
case 'ppc64':
return 'ppc64';
return 'ppc64le';
case 'riscv64':
return 'riscv64';
case 's390':
Expand Down

0 comments on commit f237929

Please sign in to comment.