summaryrefslogtreecommitdiff
path: root/goDep.helpers.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-17 06:37:14 -0600
committerJeff Carr <[email protected]>2024-12-17 06:37:14 -0600
commit233f7bca767aab9df55adea409e9820050631586 (patch)
tree1ce61760e8b31077b9accc9b1da978d935a132d3 /goDep.helpers.go
parent4bc95ad2684cb42159229b8198aa8a2377f80aa1 (diff)
lots of changes to isolate exec 'git'
Diffstat (limited to 'goDep.helpers.go')
-rw-r--r--goDep.helpers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/goDep.helpers.go b/goDep.helpers.go
index ced3fea..bb30151 100644
--- a/goDep.helpers.go
+++ b/goDep.helpers.go
@@ -18,7 +18,7 @@ func (repo *Repo) AppendGoDep(newP *GoDep) bool {
// returns time.Duration since last scan of go.sum & go.mod
func (repo *Repo) AgeGoDep() time.Duration {
- t := time.Since(repo.LastGoDep.AsTime())
+ t := time.Since(repo.Times.LastGoDep.AsTime())
return t
}