diff --git a/api/_lib/examples/github-repo-info.ts b/api/_lib/examples/github-repo-info.ts index 776320c17..65a40b467 100644 --- a/api/_lib/examples/github-repo-info.ts +++ b/api/_lib/examples/github-repo-info.ts @@ -51,7 +51,7 @@ export async function getGitHubRepoInfo(repo: Repo) { data.subdir = repo.path.slice(subdirPath.length).split('/'); } - if (data.id === 'zeit/now' && data.subdir && data.subdir[0] === 'examples') { + if (data.id === 'vercel/vercel' && data.subdir && data.subdir[0] === 'examples') { // from our examples, add `homepage` and `description` fields const example = data.subdir[1]; const exampleList = await getExampleList(); diff --git a/api/examples/download/[segment].ts b/api/examples/download/[segment].ts index 683e4459d..1ee04deaa 100644 --- a/api/examples/download/[segment].ts +++ b/api/examples/download/[segment].ts @@ -45,7 +45,7 @@ export default withApiHandler(async function(req: NowRequest, res: NowResponse) const example = segment.slice(0, -ext.length); - await extract('https://github.com/zeit/now/archive/master.zip', TMP_DIR); + await extract('https://github.com/vercel/vercel/archive/master.zip', TMP_DIR); const directory = `${TMP_DIR}/now-master/examples/${example}`; if (!isDirectory(directory)) { diff --git a/api/examples/list.ts b/api/examples/list.ts index 5f0d95e19..2f255a911 100644 --- a/api/examples/list.ts +++ b/api/examples/list.ts @@ -8,7 +8,7 @@ export default withApiHandler(async function( req: NowRequest, res: NowResponse ) { - await extract('https://github.com/zeit/now/archive/master.zip', '/tmp'); + await extract('https://github.com/vercel/vercel/archive/master.zip', '/tmp'); const exampleList = summary('/tmp/now-master/examples'); const existingExamples = Array.from(exampleList).map(key => ({ diff --git a/api/package.json b/api/package.json index eadbc488f..e23fda7dd 100644 --- a/api/package.json +++ b/api/package.json @@ -2,7 +2,7 @@ "name": "api", "private": true, "version": "0.0.0", - "description": "API for the zeit/now repo", + "description": "API for the vercel/vercel repo", "main": "index.js", "scripts": { "build": "yarn --cwd .. && node ../utils/run.js build all"