diff --git a/ubuntu/ubuntu.go b/ubuntu/ubuntu.go index 30e8c94..8a50e5f 100644 --- a/ubuntu/ubuntu.go +++ b/ubuntu/ubuntu.go @@ -52,8 +52,9 @@ type Status struct { } func Update() error { + gc := git.Config{} dir := filepath.Join(utils.CacheDir(), "ubuntu-cve-tracker") - if _, err := git.CloneOrPull(repoURL, dir); err != nil { + if _, err := gc.CloneOrPull(repoURL, dir); err != nil { return xerrors.Errorf("failed to clone or pull: %w", err) }