Skip to content

Commit

Permalink
build-lambda-zip: use cli.StringFlag pointer instead of value (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmoffatt committed Nov 13, 2019
1 parent b5b7267 commit d226cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/build-lambda-zip/main.go
Expand Up @@ -16,7 +16,7 @@ func main() {
app.Name = "build-lambda-zip"
app.Usage = "Put an executable and supplemental files into a zip file that works with AWS Lambda."
app.Flags = []cli.Flag{
cli.StringFlag{
&cli.StringFlag{
Name: "output, o",
Value: "",
Usage: "output file path for the zip. Defaults to the first input file name.",
Expand Down

0 comments on commit d226cc1

Please sign in to comment.