Skip to content

Commit

Permalink
fix test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jtendik committed Oct 30, 2019
1 parent 4b3dc51 commit a3573ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions util-provisioning-profiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ var getProvisioningProfileAsync = module.exports.getProvisioningProfileAsync = f
'cms',
'-D', // Decode a CMS message
'-i', filePath // Use infile as source of data
];
]

if (keychain) {
securityArgs.push('-k', keychain);
securityArgs.push('-k', keychain)
}

return execFileAsync('security', securityArgs)
.then(function (result) {
var provisioningProfile = new ProvisioningProfile(filePath, plist.parse(result))
Expand Down

0 comments on commit a3573ab

Please sign in to comment.