From 0f4b734e75007d20360548fcba246aabba4d8ff7 Mon Sep 17 00:00:00 2001 From: Andrew Leonard Date: Mon, 16 Dec 2024 16:13:47 +0000 Subject: [PATCH] x86 Redist API-MS-Win DLLs Signed-off-by: Andrew Leonard --- pipelines/build/common/openjdk_build_pipeline.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelines/build/common/openjdk_build_pipeline.groovy b/pipelines/build/common/openjdk_build_pipeline.groovy index 488eb908e..8014f3573 100644 --- a/pipelines/build/common/openjdk_build_pipeline.groovy +++ b/pipelines/build/common/openjdk_build_pipeline.groovy @@ -1562,7 +1562,7 @@ class Build { ms_file_skipped=false if [ "${base_os}" == "windows" ]; then # Check if file is a Microsoft supplied file that is already signed - if [[ "$file" =~ api-ms-win.* ]] || [[ "$file" =~ msvcp.* ]] || [[ "$file" =~ ucrtbase.* ]] || [[ "$file" =~ vcruntime.* ]]; then + if [[ "$file" =~ api-ms-win.* ]] || [[ "$file" =~ API-MS-Win.* ]] || [[ "$file" =~ msvcp.* ]] || [[ "$file" =~ ucrtbase.* ]] || [[ "$file" =~ vcruntime.* ]]; then echo "Skipping Microsoft file $file" ms_file_skipped=true fi