We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d25941 commit e9e55b7Copy full SHA for e9e55b7
examples/clone.js
@@ -10,11 +10,13 @@ fse.remove(path).then(function() {
10
"https://github.com/nodegit/nodegit.git",
11
path,
12
{
13
- remoteCallbacks: {
14
- certificateCheck: function() {
15
- // github will fail cert check on some OSX machines
16
- // this overrides that check
17
- return 1;
+ fetchOpts: {
+ callbacks: {
+ certificateCheck: function() {
+ // github will fail cert check on some OSX machines
+ // this overrides that check
18
+ return 1;
19
+ }
20
}
21
22
})
0 commit comments