diff options
Diffstat (limited to 'deps/npm/lib/cache/add-remote-git.js')
-rw-r--r-- | deps/npm/lib/cache/add-remote-git.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/npm/lib/cache/add-remote-git.js b/deps/npm/lib/cache/add-remote-git.js index c829a4fe6..974c158f9 100644 --- a/deps/npm/lib/cache/add-remote-git.js +++ b/deps/npm/lib/cache/add-remote-git.js @@ -188,7 +188,9 @@ function resolveHead (p, u, co, origUrl, cb) { parsed.hash = stdout var resolved = url.format(parsed) - if (parsed.protocol !== "git:") resolved = "git+" + resolved + if (!/^git[+:]/.test(parsed.protocol)) { + resolved = "git+" + resolved + } // https://github.com/npm/npm/issues/3224 // node incorrectly sticks a / at the start of the path We know that the |