this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

error on suprious positional args

+3
+3
cmd/goat/firehose.go
··· 81 81 82 82 var relayHost string 83 83 if cctx.IsSet("relay-host") { 84 + if cctx.Args().Len() != 0 { 85 + return errors.New("error: unused positional args") 86 + } 84 87 relayHost = cctx.String("relay-host") 85 88 } else { 86 89 if cctx.Args().Len() == 1 {