From d4be5b6e8e52556c1315fc2ef929257cf841e248 Mon Sep 17 00:00:00 2001 From: Paul Betts Date: Sun, 7 Dec 2014 21:24:23 -0800 Subject: [PATCH] Fix the default framework name to be 'Product Framework.framework', not 'Product.framework' --- brightray/common/main_delegate_mac.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brightray/common/main_delegate_mac.mm b/brightray/common/main_delegate_mac.mm index c710fa1da21..42f6e818e17 100644 --- a/brightray/common/main_delegate_mac.mm +++ b/brightray/common/main_delegate_mac.mm @@ -33,7 +33,7 @@ base::FilePath MainDelegate::GetResourcesPakFilePath() { } void MainDelegate::OverrideFrameworkBundlePath() { - base::FilePath helper_path = GetFrameworksPath().Append(GetApplicationName() + ".framework"); + base::FilePath helper_path = GetFrameworksPath().Append(GetApplicationName() + " Framework.framework"); base::mac::SetOverrideFrameworkBundlePath(helper_path); }