From e18931febc2c6052e1678c2e8b468a9a658e5c2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ja=CC=84nis=20Baiz=CC=8Ca?= Date: Mon, 2 Mar 2026 11:23:44 +0200 Subject: [PATCH] Add support for Windows Server Standard Evaluation blacksmith.sh runners use "Windows Server 2025 Standard Evaluation". --- common.js | 2 +- dist/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.js b/common.js index 3ee6c242e..c62d22686 100644 --- a/common.js +++ b/common.js @@ -281,7 +281,7 @@ export function getOSNameVersionArch() { function findWindowsVersion() { const version = os.version() - const match = version.match(/^Windows(?: Server)? (\d+) (?:Datacenter|Enterprise)/) + const match = version.match(/^Windows(?: Server)? (\d+) (?:Standard|Datacenter|Enterprise)/) if (match) { return match[1] } else { diff --git a/dist/index.js b/dist/index.js index 1c731bdb9..358fd668d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -614,7 +614,7 @@ function getOSNameVersionArch() { function findWindowsVersion() { const version = os.version() - const match = version.match(/^Windows(?: Server)? (\d+) (?:Datacenter|Enterprise)/) + const match = version.match(/^Windows(?: Server)? (\d+) (?:Standard|Datacenter|Enterprise)/) if (match) { return match[1] } else {