Merge pull request #85 from paulcbetts/default-framework-name

Fix the default Framework name
This commit is contained in:
Cheng Zhao 2014-12-08 12:30:04 -08:00
commit f764a449af

View file

@ -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);
}