From bc16c2f85da5eedaa2eeabfc57d96575451558d4 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 19 Jul 2024 11:22:09 -0700 Subject: [PATCH] Fix error in bundle-mac --- script/bundle-mac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bundle-mac b/script/bundle-mac index f85aaa892d..0b3f71505a 100755 --- a/script/bundle-mac +++ b/script/bundle-mac @@ -358,7 +358,7 @@ function sign_binary() { if [[ $can_code_sign = true ]]; then echo "Code signing executable $binary_path" - /usr/bin/codesign --deep --force --timestamp --options runtime --sign "$IDENTITY" "${app_path}" -v + /usr/bin/codesign --deep --force --timestamp --options runtime --sign "$IDENTITY" "${binary_path}" -v fi }