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] }