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
This commit is contained in:
Adrien Vergé 2016-09-13 17:08:54 +02:00
parent db2a647af4
commit 140d51ae9a
1 changed files with 1 additions and 1 deletions

View File

@ -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"),