From a1941e309bbac1bcf077cac60157118f98ffff2e Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@keylocation.sg> Date: Wed, 11 Oct 2017 10:41:30 +0200 Subject: [PATCH] fix: only check package.json file types for isPrivate --- lib/workers/repository/onboarding.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/workers/repository/onboarding.js b/lib/workers/repository/onboarding.js index b1e4eb6096..14dcc31054 100644 --- a/lib/workers/repository/onboarding.js +++ b/lib/workers/repository/onboarding.js @@ -12,8 +12,10 @@ async function isRepoPrivate(config) { for (const packageFile of config.packageFiles) { const fileName = typeof packageFile === 'string' ? packageFile : packageFile.packageFile; - const packageContent = await config.api.getFileJson(fileName); - repoIsPrivate = repoIsPrivate && packageContent && packageContent.private; + if (fileName.endsWith('package.json')) { + const packageContent = await config.api.getFileJson(fileName); + repoIsPrivate = repoIsPrivate && packageContent && packageContent.private; + } } return repoIsPrivate === true; } -- GitLab