From 7364d0f2d364943391cd2e682672daffca2828d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8E=86=E5=86=B0=E9=83=81-hermes=E7=89=88?= Date: Wed, 6 May 2026 15:55:03 +0800 Subject: [PATCH] ci: fix stdb path normalization regex --- jenkins/Jenkinsfile.production-stdb-module-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/Jenkinsfile.production-stdb-module-build b/jenkins/Jenkinsfile.production-stdb-module-build index 2e5f7975..42371156 100644 --- a/jenkins/Jenkinsfile.production-stdb-module-build +++ b/jenkins/Jenkinsfile.production-stdb-module-build @@ -83,7 +83,7 @@ pipeline { if ([string]::IsNullOrWhiteSpace($Path)) { return $Path } - $normalized = $Path -replace '\\', '/' + $normalized = $Path.Replace('\', '/') if ($normalized -match '^([A-Za-z]):/(.*)$') { return '/' + $matches[1].ToLower() + '/' + $matches[2] }