Fix typo - LSApplicationCategoryType

This commit is contained in:
Mark Rickert
2013-08-07 08:53:37 -04:00
committed by Watson
parent 80687c78d0
commit 6c146a9021

View File

@@ -112,7 +112,7 @@ module Motion; module Project;
'NSPrincipalClass' => 'NSApplication',
'CFBundleIconFile' => (icon or ''),
'LSMinimumSystemVersion' => deployment_target,
'LSMinimumSystemVersion' => (@category.start_with?('public.app-category') ? @category : 'public.app-category.' + @category)
'LSApplicationCategoryType' => (@category.start_with?('public.app-category') ? @category : 'public.app-category.' + @category)
}.merge(generic_info_plist).merge(dt_info_plist).merge(info_plist))
end