diff --git a/README.md b/README.md index edde1f6c39..71f1f6bd21 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ Some additional resources for addons and writing `gyp` files: * ["Hello World" node addon example](https://github.com/joyent/node/tree/master/test/addons/hello-world) * [gyp user documentation](https://chromium.googlesource.com/external/gyp/+/master/docs/UserDocumentation.md) * [gyp input format reference](https://chromium.googlesource.com/external/gyp/+/master/docs/InputFormatReference.md) - * [*"binding.gyp" files out in the wild* wiki page](https://github.com/TooTallNate/node-gyp/wiki/%22binding.gyp%22-files-out-in-the-wild) + * [*"binding.gyp" files out in the wild* wiki page](https://github.com/nodejs/node-gyp/wiki/%22binding.gyp%22-files-out-in-the-wild) Commands diff --git a/bin/node-gyp.js b/bin/node-gyp.js index 4678260fd5..e44e73877c 100755 --- a/bin/node-gyp.js +++ b/bin/node-gyp.js @@ -125,7 +125,7 @@ function issueMessage () { errorMessage() log.error('', [ 'This is a bug in `node-gyp`.' , 'Try to update node-gyp and file an Issue if it does not help:' - , ' ' + , ' ' ].join('\n')) } diff --git a/lib/install.js b/lib/install.js index 6cbcdb8f7a..fafa857fbb 100644 --- a/lib/install.js +++ b/lib/install.js @@ -142,7 +142,7 @@ function install (gyp, argv, callback) { } try { // The "request" constructor can throw sometimes apparently :( - // See: https://github.com/TooTallNate/node-gyp/issues/114 + // See: https://github.com/nodejs/node-gyp/issues/114 req = request(requestOpts) } catch (e) { cb(e) diff --git a/lib/node-gyp.js b/lib/node-gyp.js index 6223d4b194..d6d6509a7a 100644 --- a/lib/node-gyp.js +++ b/lib/node-gyp.js @@ -48,7 +48,7 @@ function Gyp () { // set the dir where node-gyp dev files get installed // TODO: make this *more* configurable? - // see: https://github.com/TooTallNate/node-gyp/issues/21 + // see: https://github.com/nodejs/node-gyp/issues/21 var homeDir = process.env.HOME || process.env.USERPROFILE if (!homeDir) { throw new Error( diff --git a/package.json b/package.json index cd4d47782e..26ed5c373f 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "author": "Nathan Rajlich (http://tootallnate.net)", "repository": { "type": "git", - "url": "git://github.com/TooTallNate/node-gyp.git" + "url": "git://github.com/nodejs/node-gyp.git" }, "preferGlobal": true, "bin": "./bin/node-gyp.js",