Skip to content

Commit

Permalink
Use new #plist.readFileSync() in provisioning profile read
Browse files Browse the repository at this point in the history
  • Loading branch information
matiassingers committed Jan 22, 2015
1 parent f9811cc commit 19f45a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = function (file, callback){
return cleanUp(error);
}

data.provisioning = plist.parse(fs.readFileSync(path + provisionFilename, 'utf8'));
data.provisioning = plist.readFileSync(path + provisionFilename);
delete data.provisioning.DeveloperCertificates;

if(!which.sync('codesign')){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipa-metadata",
"version": "0.5.0",
"version": "0.6.0",
"description": "extract metadata and provisioning information about an .ipa file",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 19f45a4

Please sign in to comment.