diff options
| author | cloudson <[email protected]> | 2014-04-17 08:33:22 -0300 |
|---|---|---|
| committer | cloudson <[email protected]> | 2014-04-17 08:33:22 -0300 |
| commit | 80ad996dc13cf5796130e409ef3af46bdc70be7e (patch) | |
| tree | 9448f59e5808d561e84cc3058cc2de6a093a7ac2 /repository.go | |
| parent | 9cd1d129bcd567ef65137783a603f8d898d8d933 (diff) | |
Recursive find respository
Diffstat (limited to 'repository.go')
| -rw-r--r-- | repository.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repository.go b/repository.go index d757747..53484f8 100644 --- a/repository.go +++ b/repository.go @@ -24,7 +24,7 @@ func OpenRepository(path string) (*Repository, error) { runtime.LockOSThread() defer runtime.UnlockOSThread() - ret := C.git_repository_open(&repo.ptr, cpath) + ret := C.git_repository_open_ext(&repo.ptr, cpath, 0, nil) if ret < 0 { return nil, MakeGitError(ret) } |
