⛩️ Powerful yet Minimal Nix Dependency Manager
flake flakes home-manager nixos go nix dependency dependencies
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(yae): allow statically forceable sources

Fuwn 61beb1c0 9faaf211

+2 -1
+1
sources.go
··· 18 18 TagPredicate string `json:"tag_predicate,omitempty"` 19 19 TrimTagPrefix string `json:"trim_tag_prefix,omitempty"` 20 20 Pinned bool `json:"pinned,omitempty"` 21 + Force bool `json:"force,omitempty"` 21 22 } 22 23 23 24 func (s *Sources) EnsureLoaded() error {
+1 -1
yae.go
··· 333 333 return updated, err 334 334 } 335 335 336 - if tag != source.Version || force { 336 + if tag != source.Version || force || source.Force { 337 337 if show { 338 338 fmt.Println("updated version for", name, "from", source.Version, "to", tag) 339 339 }