summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xplatform/darwin/scripts/check-public-symbols.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/darwin/scripts/check-public-symbols.js b/platform/darwin/scripts/check-public-symbols.js
index 4dde5d677b..a2045f81ec 100755
--- a/platform/darwin/scripts/check-public-symbols.js
+++ b/platform/darwin/scripts/check-public-symbols.js
@@ -18,7 +18,7 @@ function hasMissingSymbols(os) {
let umbrellaPath = `platform/${os.toLowerCase()}/src/Mapbox.h`;
let docArgs = ['doc', '--objc', umbrellaPath, '--',
'-x', 'objective-c', '-I', 'platform/darwin/src/', '-isysroot', sysroot];
- let docStr = execFileSync('sourcekitten', docArgs).toString().trim();
+ let docStr = execFileSync('sourcekitten', docArgs, { maxBuffer: Infinity }).toString().trim();
let docJson = JSON.parse(docStr);
_.forEach(docJson, function (result) {
_.forEach(result, function (structure, path) {