Skip to content

Commit

Permalink
Remove service.args from service configuration (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksanders authored Oct 14, 2021
1 parent 9077464 commit b7a0ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func initService() error {
svcProgram = &program{}

var args []string
for _, key := range []string{"service.flags", "service.args", "service.run"} {
for _, key := range []string{"service.flags", "service.run"} {
configArgs := viper.GetStringSlice(key)
if len(configArgs) > 0 {
args = append(args, configArgs...)
Expand Down

0 comments on commit b7a0ff5

Please sign in to comment.