This commit is contained in:
risk danger olson 2015-11-18 10:25:34 -07:00
parent e7b4348ff4
commit f145021933
3 changed files with 9 additions and 2 deletions

@ -2,5 +2,5 @@
package lfs package lfs
func init() { func init() {
netrcBasename = ".netrc" netrcBasename = ".netrc"
} }

@ -1,5 +1,12 @@
package lfs package lfs
import (
"os"
"path/filepath"
"github.com/github/git-lfs/vendor/_nuts/github.com/bgentry/go-netrc/netrc"
)
// different on unix vs windows // different on unix vs windows
var netrcBasename string var netrcBasename string

@ -2,5 +2,5 @@
package lfs package lfs
func init() { func init() {
netrcBasename = "_netrc" netrcBasename = "_netrc"
} }