Skip to content

Commit

Permalink
Make ProvisionedDevices Optional
Browse files Browse the repository at this point in the history
Fixes #7

Many profiles do not have an associated list of devices such as app-store profiles as once signed it works on any. This commit has been tested through 70 profiles on my machine hopefully testing most iOS situations (macOS is still a question mark).
  • Loading branch information
Sherlouk authored Apr 14, 2018
1 parent 8ae2b45 commit 02068bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public struct ProvisioningProfile: Codable {
public var name: String

/// An array of device UUIDs that are provisioned on this profile
public var provisionedDevices: [String]
public var provisionedDevices: [String]?

/// An array of team identifier of which this profile belongs to
public var teamIdentifiers: [String]
Expand Down

0 comments on commit 02068bd

Please sign in to comment.