summaryrefslogtreecommitdiff
path: root/repo.new.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-13 00:52:59 -0500
committerJeff Carr <[email protected]>2025-09-13 00:52:59 -0500
commit719287c3bfa349c74c2ce86b01299c97169ec3a8 (patch)
tree5a00c1e9d44d28511d27cc50f86f8d03a8655ae8 /repo.new.go
parent6654dbb4102ba0f725f7d82b5f26a7288a68699d (diff)
changes to Reload()v0.0.126
Diffstat (limited to 'repo.new.go')
-rw-r--r--repo.new.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/repo.new.go b/repo.new.go
index bd8af6a..619ff05 100644
--- a/repo.new.go
+++ b/repo.new.go
@@ -35,7 +35,7 @@ func (all *Repos) NewGoRepo(fullpath string, gopath string) (*Repo, error) {
newr.GoInfo = new(GoInfo)
newr.GoInfo.GoPath = gopath
// everything happens in here
- newr.Reload()
+ newr.ReloadForce()
newr.ValidateUTF8()
if all.AppendByFullPath(&newr) {
@@ -91,7 +91,7 @@ func (all *Repos) NewRepo(fullpath string, namespace string) (*Repo, error) {
newr.Times = new(GitTimes)
// everything happens in here
- newr.Reload()
+ newr.ReloadForce()
newr.ValidateUTF8()
if all.AppendByFullPath(&newr) {
@@ -111,7 +111,7 @@ func NewRepo(fullpath string) (*Repo, error) {
repo.Times = new(GitTimes)
// everything happens in here
- repo.Reload()
+ repo.ReloadForce()
repo.ValidateUTF8()
if repo.Namespace == "" {
giturl := repo.GetURL()