Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/1.16.x'
Browse files Browse the repository at this point in the history
* origin/1.16.x:
  Fix #1020
  • Loading branch information
kornelski committed Jan 28, 2017
2 parents 155816b + 03abfe2 commit 9d966e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_appcast/ArchiveItem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class ArchiveItem: CustomStringConvertible {
throw makeError(code: .unarchivingError, "Too many apps in \(unarchivedDir.path) \(apps)");
}

let appPath = items[0];
let appPath = apps[0];
guard let infoPlist = NSDictionary(contentsOf: appPath.appendingPathComponent("Contents/Info.plist")) else {
throw makeError(code: .unarchivingError, "No plist \(appPath.path)");
}
Expand Down

0 comments on commit 9d966e6

Please sign in to comment.