Fix `files` configuration key error

Currently the `files` option doesn't have any effect (i.e. no asset is
published on GitHub).

This patch fixes the corresponding typo in `main.go`.

Closes: #16
master
Adrien Vergé 8 years ago
parent db2a647af4
commit 140d51ae9a
  1. 2
      main.go

@ -108,7 +108,7 @@ func run(c *cli.Context) error {
},
Config: Config{
APIKey: c.String("api-key"),
Files: c.StringSlice("api-key"),
Files: c.StringSlice("files"),
FileExists: c.String("file-exists"),
Checksum: c.StringSlice("checksum"),
Draft: c.Bool("draft"),

Loading…
Cancel
Save