diff options
| author | Fuwn <[email protected]> | 2024-10-11 15:11:22 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-11 15:11:26 -0700 |
| commit | d0eaa90dc4172dee11d27b01694b90d0e94027bf (patch) | |
| tree | 679f82428b055c63f9b310adb4e77c8d3cd6a412 /yae.go | |
| parent | 2a4f2ad8756a75906d980a0fc7fbbb478ddd36ff (diff) | |
| download | yae-d0eaa90dc4172dee11d27b01694b90d0e94027bf.tar.xz yae-d0eaa90dc4172dee11d27b01694b90d0e94027bf.zip | |
feat(yae): allow statically forceable sources
Diffstat (limited to 'yae.go')
| -rw-r--r-- | yae.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -333,7 +333,7 @@ func updateSource(sources *Sources, name string, source Source, show bool, force return updated, err } - if tag != source.Version || force { + if tag != source.Version || force || source.Force { if show { fmt.Println("updated version for", name, "from", source.Version, "to", tag) } |