diff options
Diffstat (limited to 'submodule.go')
-rw-r--r-- | submodule.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/submodule.go b/submodule.go index cf90c63..fd3d173 100644 --- a/submodule.go +++ b/submodule.go @@ -218,7 +218,7 @@ func (s *Submodule) fetchAndCheckout( ctx context.Context, r *Repository, o *SubmoduleUpdateOptions, hash plumbing.Hash, ) error { if !o.NoFetch { - err := r.FetchContext(ctx, &FetchOptions{}) + err := r.FetchContext(ctx, &FetchOptions{Auth: o.Auth}) if err != nil && err != NoErrAlreadyUpToDate { return err } |