Skip to content

Commit

Permalink
Merge pull request #19 from victor/patch-1
Browse files Browse the repository at this point in the history
Fix ApplicationPath entry
  • Loading branch information
lukeredpath committed Aug 30, 2011
2 parents 0b4a219 + 55a4153 commit a848957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/beta_builder/archived_build.rb
Expand Up @@ -72,7 +72,7 @@ def save_to(path)
def write_plist_to(path) def write_plist_to(path)
plist = { plist = {
"ApplicationProperties" => { "ApplicationProperties" => {
"ApplicationPath" => File.join("Applications", "#{@configuration.app_file_name}.app"), "ApplicationPath" => File.join("Applications", @configuration.app_file_name),
"CFBundleIdentifier" => metadata["CFBundleIdentifier"], "CFBundleIdentifier" => metadata["CFBundleIdentifier"],
"CFBundleShortVersionString" => metadata["CFBundleShortVersionString"], "CFBundleShortVersionString" => metadata["CFBundleShortVersionString"],
"IconPaths" => metadata["CFBundleIconFiles"].map { |file| File.join("Applications", @configuration.app_file_name, file) } "IconPaths" => metadata["CFBundleIconFiles"].map { |file| File.join("Applications", @configuration.app_file_name, file) }
Expand Down

0 comments on commit a848957

Please sign in to comment.