tangled
alpha
login
or
join now
fuwn.net
/
yae
0
fork
atom
⛩️ Powerful yet Minimal Nix Dependency Manager
flake
flakes
home-manager
nixos
go
nix
dependency
dependencies
0
fork
atom
overview
issues
pulls
pipelines
feat(source): extra debug logs
fuwn.net
1 year ago
c2edb2e1
f4c4784b
verified
This commit was signed with the committer's
known signature
.
fuwn.net
SSH Key Fingerprint:
SHA256:VPdFPyPbd6JkoMyWUdZ/kkTcIAt3sxjXD2XSAZ7FYC4=
+4
1 changed file
expand all
collapse all
unified
split
source.go
+4
source.go
···
59
59
60
60
if strings.Contains(source.URLTemplate, "{version}") {
61
61
source.URL = strings.ReplaceAll(source.URLTemplate, "{version}", source.Version)
62
62
+
63
63
+
log.Debugf("patched %s: substituted url template", name)
62
64
}
63
65
} else {
64
66
log.Infof("skipped %s: version remains unchanged", name)
···
66
68
return updated, nil
67
69
}
68
70
}
71
71
+
72
72
+
log.Debugf("checking %s: sha256", name)
69
73
70
74
sha256, err := fetchSHA256(source.URL, source.Unpack)
71
75