⛩️ 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.

refactor(yae): rename updated list flags

Fuwn f4c4784b 693a1e8a

+6 -6
+6 -6
yae.go
··· 203 203 ArgsUsage: "[name]", 204 204 Flags: []cli.Flag{ 205 205 &cli.BoolFlag{ 206 - Name: "show-updated-only", 207 - Usage: "Output a newline-seperated list of updated sources, silence other output", 206 + Name: "output-updated-list", 207 + Usage: "Output a newline-seperated list of updated sources, regardless of silent mode", 208 208 }, 209 209 &cli.BoolFlag{ 210 - Name: "show-updated-only-formatted", 211 - Usage: "Output a comma and/or ampersand list of updated sources, silence other output", 210 + Name: "output-formatted-updated-list", 211 + Usage: "Output a comma and/or ampersand list of updated sources, regardless of silent mode", 212 212 }, 213 213 &cli.BoolFlag{ 214 214 Name: "force-hashed", ··· 249 249 } 250 250 } 251 251 252 - if c.Bool("show-updated-only") { 252 + if c.Bool("output-updated-list") { 253 253 for _, update := range updates { 254 254 fmt.Println(update) 255 255 } 256 - } else if c.Bool("show-updated-only-formatted") { 256 + } else if c.Bool("output-formatted-updated-list") { 257 257 fmt.Println(lister(updates)) 258 258 } 259 259