From 98e18d5f604b9d140fe32b5dd997322562a29bb7 Mon Sep 17 00:00:00 2001 From: "mr. m" <91018726+mr-cheffy@users.noreply.github.com> Date: Fri, 24 Apr 2026 12:17:13 +0200 Subject: [PATCH] no-bug: Fixed checking for workflow update manifests (gh-13384) --- scripts/mar_sign.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/mar_sign.sh b/scripts/mar_sign.sh index 3420cc884..48cde3858 100644 --- a/scripts/mar_sign.sh +++ b/scripts/mar_sign.sh @@ -129,12 +129,12 @@ update_manifests() { manifest="linux_update_manifest_aarch64" elif [[ "$mar_file" == "windows.mar" ]]; then manifest=".github/workflows/object/windows-x64-signed-x86_64/update_manifest" - if [ ! -f "$manifest" ]; then + if [ ! -d "$manifest" ]; then manifest="windows_update_manifest_x86_64" fi elif [[ "$mar_file" == "windows-arm64.mar" ]]; then manifest=".github/workflows/object/windows-x64-signed-arm64/update_manifest" - if [ ! -f "$manifest" ]; then + if [ ! -d "$manifest" ]; then manifest="windows_update_manifest_arm64" fi elif [[ "$mar_file" == "macos.mar" ]]; then