From e33bb3d6ee29f637ade83f221f8752540831126e Mon Sep 17 00:00:00 2001 From: rosen-vladimirov Date: Tue, 20 Aug 2019 10:53:32 +0300 Subject: [PATCH] fix: certificates and provision parsing should work on macOS Catalina Currently, in case you pass `--provision` to `tns prepare/build/run/debug/test` command and you have macOS Catalina installed, CLI fails with error: `Expected "SHA-1 hash: " or end of input but "S" found`. The problem is that the `security` command used by `ios-mobileprovision-finder` package has a different output in macOS Catalina. To fix this, update the ios-mobileprovision-finder version. --- npm-shrinkwrap.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 77dc3780b4..39297648e9 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -4038,9 +4038,9 @@ } }, "ios-mobileprovision-finder": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/ios-mobileprovision-finder/-/ios-mobileprovision-finder-1.0.10.tgz", - "integrity": "sha1-UaXn+TzUCwN/fI8+JwXjSI11VgE=", + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ios-mobileprovision-finder/-/ios-mobileprovision-finder-1.0.11.tgz", + "integrity": "sha512-abq25CblgdjIAD2t6YkYoE7SvK8eN9OWKLH4Bspi8mzpGhZEBhwkWr5HT9nTy+9BA8Zyz1bMuvUyC5pBPDVFlg==", "requires": { "chalk": "^1.1.3", "plist": "^2.0.1", diff --git a/package.json b/package.json index 7454087971..1043f2a7e7 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "iconv-lite": "0.4.11", "inquirer": "6.2.0", "ios-device-lib": "0.6.0", - "ios-mobileprovision-finder": "1.0.10", + "ios-mobileprovision-finder": "1.0.11", "ios-sim-portable": "4.0.9", "istextorbinary": "2.2.1", "jimp": "0.2.28",