From 0f4ff62e55b3363b99bc51824a8643a8ddb0b9b3 Mon Sep 17 00:00:00 2001 From: William Vinnicombe Date: Mon, 22 Apr 2024 13:24:00 +0100 Subject: [PATCH] Fix ninja asset name on linux Signed-off-by: William Vinnicombe --- src/utils/download.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/download.mts b/src/utils/download.mts index dad48e70..24e30d08 100644 --- a/src/utils/download.mts +++ b/src/utils/download.mts @@ -25,7 +25,7 @@ import { unxzFile, unzipFile } from "./downloadHelpers.mjs"; /// Translate nodejs platform names to ninja platform names const NINJA_PLATFORMS: { [key: string]: string } = { darwin: "mac", - linux: "lin", + linux: "linux", win32: "win", };