summaryrefslogtreecommitdiff
path: root/rill.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-17 21:14:39 -0600
committerJeff Carr <[email protected]>2024-12-17 21:14:39 -0600
commitc4f9430e4633aa13b993a9ac6102dcdbcc5eb9c2 (patch)
treed0eb52656ee14e214322ace2d4bd766ff3b155b4 /rill.go
parent7cdb2bf6a0c88ac860b03a547918bb6d85e6fdb6 (diff)
keep trying to fix init() and update()
Diffstat (limited to 'rill.go')
-rw-r--r--rill.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/rill.go b/rill.go
index 4876aa7..312970b 100644
--- a/rill.go
+++ b/rill.go
@@ -46,10 +46,12 @@ func (f *Forge) updateRepo(repo *gitpb.Repo) error {
if repo.DidRepoChange() {
f.configSave = true
- log.Info("repo changed", repo.StateChange, repo.FullPath)
+ log.Info("repo changed ", repo.FullPath, repo.StateChange)
if err := repo.Reload(); err != nil {
return err
}
+ } else {
+ // log.Info("repo did not change", repo.FullPath, repo.StateChange)
}
if f.Config.IsReadOnly(repo.GetGoPath()) {
if repo.ReadOnly {