From 53ae92e59d7f4290cb54f5571dcd254dab41aebd Mon Sep 17 00:00:00 2001 From: Matt <1009003+tantaman@users.noreply.github.com> Date: Fri, 22 Dec 2023 09:52:39 -0500 Subject: [PATCH] correct artifact name for download --- core/nodejs-install-helper.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/nodejs-install-helper.js b/core/nodejs-install-helper.js index 5f0b896b..9e0a54ee 100644 --- a/core/nodejs-install-helper.js +++ b/core/nodejs-install-helper.js @@ -21,7 +21,7 @@ if (process.env.CRSQLITE_NOPREBUILD) { } else { // todo: check msys? if (["win32", "cygwin"].includes(process.platform)) { - os = "windows"; + os = "win"; } // manual ovverides for testing @@ -36,7 +36,7 @@ if (process.env.CRSQLITE_NOPREBUILD) { case "linux": ext = "so"; break; - case "windows": + case "win": ext = "dll"; break; }