Skip to content

Commit

Permalink
fix: use right parameter name for secrets-file (#226)
Browse files Browse the repository at this point in the history
Update the param name to secret-file instead of secrets
  • Loading branch information
kameshsampath authored Nov 24, 2022
1 parent 9de573c commit 7a70abd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drone/exec/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func mapOldToExecCommand(input *cli.Context) *execCommand {
Networks: input.StringSlice("network"),
Environ: readParams(input.String("env-file")),
Volumes: withVolumeSlice(input.StringSlice("volume")),
Secrets: readParams(input.String("secrets")),
Secrets: readParams(input.String("secret-file")),
Config: input.String("registry"),
Privileged: input.StringSlice("privileged"),
Pretty: input.BoolT("pretty"),
Expand Down

0 comments on commit 7a70abd

Please sign in to comment.