mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
824 B
32 lines
824 B
var assert = require("assert")
|
|
, log = require("npmlog")
|
|
, addRemoteGit = require("./add-remote-git.js")
|
|
|
|
module.exports = function maybeGithub (p, cb) {
|
|
assert(typeof p === "string", "must pass package name")
|
|
assert(typeof cb === "function", "must pass callback")
|
|
|
|
var u = "git://github.com/" + p
|
|
log.info("maybeGithub", "Attempting %s from %s", p, u)
|
|
|
|
return addRemoteGit(u, true, function (er, data) {
|
|
if (er) {
|
|
var upriv = "git+ssh://git@github.com:" + p
|
|
log.info("maybeGithub", "Attempting %s from %s", p, upriv)
|
|
|
|
return addRemoteGit(upriv, false, function (er, data) {
|
|
if (er) return cb(er)
|
|
|
|
success(upriv, data)
|
|
})
|
|
}
|
|
|
|
success(u, data)
|
|
})
|
|
|
|
function success (u, data) {
|
|
data._from = u
|
|
data._fromGithub = true
|
|
return cb(null, data)
|
|
}
|
|
}
|
|
|