diff options
| author | Fuwn <[email protected]> | 2024-10-12 06:50:10 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-12 06:50:10 -0700 |
| commit | 40f9bc9d441c78214540240413ad74807c28e30b (patch) | |
| tree | 13083665a78862d7001e62ec42b9018727088147 /yae.go | |
| parent | 32757ce6d8be9a352c3fcf6b4893edf42e8018bd (diff) | |
| download | yae-40f9bc9d441c78214540240413ad74807c28e30b.tar.xz yae-40f9bc9d441c78214540240413ad74807c28e30b.zip | |
feat(yae): hide internal tool logs
Diffstat (limited to 'yae.go')
| -rw-r--r-- | yae.go | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -88,10 +88,6 @@ func main() { Name: "tag-predicate", Usage: "Git tag predicate used in identifying latest git source", }, - &cli.BoolFlag{ - Name: "silent", - Usage: "Silence output", - }, &cli.StringFlag{ Name: "trim-tag-prefix", Usage: "A prefix to trim from remote git tags", @@ -151,7 +147,7 @@ func main() { source.Force = true } - if sha256, err := fetchSHA256(source.URL, c.Bool("unpack"), !c.Bool("silent")); err != nil { + if sha256, err := fetchSHA256(source.URL, c.Bool("unpack")); err != nil { return err } else { source.SHA256 = sha256 |