From 173582c0f6d1050a721f83597709d20a29cd8fda Mon Sep 17 00:00:00 2001 From: igor Date: Tue, 30 Aug 2016 22:20:50 +0300 Subject: [PATCH] update repo name --- .npmignore | 4 ++-- README.md | 2 +- lib/github.js | 2 +- lib/index.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.npmignore b/.npmignore index 549207d..9165754 100644 --- a/.npmignore +++ b/.npmignore @@ -1,5 +1,5 @@ -.eslintignore -.gitignore /lib /patches/*.patch /test +.eslintignore +.gitignore diff --git a/README.md b/README.md index 2448c5b..b7ce868 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# pkg-cache +# pkg-fetch diff --git a/lib/github.js b/lib/github.js index 8a4008b..b993b74 100644 --- a/lib/github.js +++ b/lib/github.js @@ -7,7 +7,7 @@ import progress from 'request-progress'; import request from 'request'; const OWNER = 'zeit'; -const REPO = 'pkg-cache'; +const REPO = 'pkg-fetch'; const { GITHUB_USERNAME, GITHUB_PASSWORD } = process.env; const auth = { user: GITHUB_USERNAME, pass: GITHUB_PASSWORD }; const request2 = request.defaults({ diff --git a/lib/index.js b/lib/index.js index 6de5057..796c567 100644 --- a/lib/index.js +++ b/lib/index.js @@ -39,7 +39,7 @@ export async function need ({ if (await exists(local)) return local; } if (!forceBuild) { - log.info('Downloading base binaries to \'./.pkg-cache\'...', name); + log.info('Downloading base binaries to \'~/.pkg-cache\'...', name); const remote = remotePlace({ arch, nodeVersion, platform, version }); if (await download(remote, local)) return local; downloadFailed = true;