Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwrfuller committed Jan 13, 2025
1 parent 0bcad63 commit 922afb1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions v2/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ import (
var globalFlags = []cli.Flag{
&cli.BoolFlag{
Name: "verbose",
Aliases: []string{"v"},
Aliases: []string{"v"},
Usage: "Output extra details like the commands to be run.",
EnvVars: []string{"AHOY_VERBOSE"},
EnvVars: []string{"AHOY_VERBOSE"},
Destination: &verbose,
},
&cli.StringFlag{
Name: "file",
Aliases: []string{"f"},
Aliases: []string{"f"},
Usage: "Use a specific ahoy file.",
Destination: &sourcefile,
},
&cli.BoolFlag{
Name: "help",
Aliases: []string{"h"},
Usage: "show help",
Name: "help",
Aliases: []string{"h"},
Usage: "show help",
},
&cli.BoolFlag{
Name: "version",
Expand Down

0 comments on commit 922afb1

Please sign in to comment.