Skip to content

Commit 9bf283b

Browse files
committed
Fix ninja asset name
1 parent b26ce93 commit 9bf283b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/download.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,10 +477,10 @@ export async function downloadAndInstallNinja(
477477
return false;
478478
}
479479

480-
const assetName = `ninja-${NINJA_PLATFORMS[process.platform]}-${
480+
const assetName = `ninja-${NINJA_PLATFORMS[process.platform]}${
481481
process.platform === "linux"
482482
? process.arch === "arm64"
483-
? "aarch64"
483+
? "-aarch64"
484484
: ""
485485
: ""
486486
}.zip`;

0 commit comments

Comments
 (0)