You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nodegit.Clone(
// basic auth bitbucket repo is what I was testing
"https://user:pass@bitbucket.org/repo.git",
path,
{
fetchOpts: {
callbacks: {
certificateCheck: function() {
// github will fail cert check on some OSX machines
// this overrides that check
return 1;
}
}
}
})
node 5.5.0 works as expected
this seems like an error from http-parser itself so I don't know if this is really related to nodegit, since I'm very short on time to do some more debugging