Skip to content

Commit 0fbc387

Browse files
committed
Update repository URLs.
The project was moved from https://github.com/TooTallNate/node-gyp to https://github.com/nodejs/node-gyp. Update a handful of links that still pointed to the old location. PR-URL: #715 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
1 parent bbedb88 commit 0fbc387

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Some additional resources for addons and writing `gyp` files:
139139
* ["Hello World" node addon example](https://github.com/joyent/node/tree/master/test/addons/hello-world)
140140
* [gyp user documentation](https://chromium.googlesource.com/external/gyp/+/master/docs/UserDocumentation.md)
141141
* [gyp input format reference](https://chromium.googlesource.com/external/gyp/+/master/docs/InputFormatReference.md)
142-
* [*"binding.gyp" files out in the wild* wiki page](https://github.com/TooTallNate/node-gyp/wiki/%22binding.gyp%22-files-out-in-the-wild)
142+
* [*"binding.gyp" files out in the wild* wiki page](https://github.com/nodejs/node-gyp/wiki/%22binding.gyp%22-files-out-in-the-wild)
143143

144144

145145
Commands

bin/node-gyp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function issueMessage () {
125125
errorMessage()
126126
log.error('', [ 'This is a bug in `node-gyp`.'
127127
, 'Try to update node-gyp and file an Issue if it does not help:'
128-
, ' <https://github.com/TooTallNate/node-gyp/issues>'
128+
, ' <https://github.com/nodejs/node-gyp/issues>'
129129
].join('\n'))
130130
}
131131

lib/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ function install (gyp, argv, callback) {
142142
}
143143
try {
144144
// The "request" constructor can throw sometimes apparently :(
145-
// See: https://github.com/TooTallNate/node-gyp/issues/114
145+
// See: https://github.com/nodejs/node-gyp/issues/114
146146
req = request(requestOpts)
147147
} catch (e) {
148148
cb(e)

lib/node-gyp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function Gyp () {
4848

4949
// set the dir where node-gyp dev files get installed
5050
// TODO: make this *more* configurable?
51-
// see: https://github.com/TooTallNate/node-gyp/issues/21
51+
// see: https://github.com/nodejs/node-gyp/issues/21
5252
var homeDir = process.env.HOME || process.env.USERPROFILE
5353
if (!homeDir) {
5454
throw new Error(

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",
1717
"repository": {
1818
"type": "git",
19-
"url": "git://github.com/TooTallNate/node-gyp.git"
19+
"url": "git://github.com/nodejs/node-gyp.git"
2020
},
2121
"preferGlobal": true,
2222
"bin": "./bin/node-gyp.js",

0 commit comments

Comments
 (0)