diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-15 21:43:03 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-15 21:43:03 +0200 |
commit | 4c6e65190f48f0a7558718d239ffb23ee59580ac (patch) | |
tree | 9122d079188b2508b929f99c18cf97773744471b /examples/object_storage/main.go | |
parent | bcb49927a3897eadc29960032c70da29e26d6b58 (diff) | |
download | go-git-4c6e65190f48f0a7558718d239ffb23ee59580ac.tar.gz |
examples: fix
Diffstat (limited to 'examples/object_storage/main.go')
-rw-r--r-- | examples/object_storage/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/object_storage/main.go b/examples/object_storage/main.go index 22fa426..d3818e0 100644 --- a/examples/object_storage/main.go +++ b/examples/object_storage/main.go @@ -38,7 +38,7 @@ func clone(r *git.Repository, url string) { fmt.Printf("Cloning %q ...\n", os.Args[2]) start := time.Now() - if err := r.Clone(&git.CloneOptions{URL: url}); err != nil { + if err := r.Clone(&git.RepositoryCloneOptions{URL: url}); err != nil { panic(err) } |