diff --git a/go.mod b/go.mod index 2b5a2e44..486d9a8e 100644 --- a/go.mod +++ b/go.mod @@ -33,7 +33,7 @@ require ( github.com/onsi/gomega v1.5.0 // indirect github.com/pkg/profile v1.3.0 github.com/radovskyb/watcher v1.0.6 - github.com/rivo/tview v0.0.0-20190626133940-2e907d29e475 + github.com/rivo/tview v0.0.0-20190721135419-23dc8a0944e4 github.com/rivo/uniseg v0.1.0 // indirect github.com/shirou/gopsutil v2.18.12+incompatible github.com/sticreations/spotigopher v0.0.0-20181009182052-98632f6f94b0 diff --git a/go.sum b/go.sum index 2d2d728a..b71fa837 100644 --- a/go.sum +++ b/go.sum @@ -133,6 +133,8 @@ github.com/rivo/tview v0.0.0-20190609162513-b62197ade412 h1:muOFMct2jVhlSw9S3MRr github.com/rivo/tview v0.0.0-20190609162513-b62197ade412/go.mod h1:+rKjP5+h9HMwWRpAfhIkkQ9KE3m3Nz5rwn7YtUpwgqk= github.com/rivo/tview v0.0.0-20190626133940-2e907d29e475 h1:gbl2jaG+j0PsIAIwRMgK6sxt9RoYuRXNTe4JtE2kIrc= github.com/rivo/tview v0.0.0-20190626133940-2e907d29e475/go.mod h1:+rKjP5+h9HMwWRpAfhIkkQ9KE3m3Nz5rwn7YtUpwgqk= +github.com/rivo/tview v0.0.0-20190721135419-23dc8a0944e4 h1:3L7UVoI/26LdSEPadEc4tNPMW+4vLBJaj31jAlJG4xg= +github.com/rivo/tview v0.0.0-20190721135419-23dc8a0944e4/go.mod h1:+rKjP5+h9HMwWRpAfhIkkQ9KE3m3Nz5rwn7YtUpwgqk= github.com/rivo/uniseg v0.0.0-20190513083848-b9f5b9457d44 h1:XKCbzPvK4/BbMXoMJOkYP2ANxiAEO0HM1xn6psSbXxY= github.com/rivo/uniseg v0.0.0-20190513083848-b9f5b9457d44/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.1.0 h1:+2KBaVoUmb9XzDsrx/Ct0W/EYOSFf/nWTauy++DprtY= diff --git a/modules/cmdrunner/settings.go b/modules/cmdrunner/settings.go index 2fb4a223..a7894eb1 100644 --- a/modules/cmdrunner/settings.go +++ b/modules/cmdrunner/settings.go @@ -11,7 +11,7 @@ const defaultTitle = "CmdRunner" type Settings struct { common *cfg.Common - args []string `help:"The arguments to the command, with each item as an element in an array. Example: for curl -I cisco.com, the arguments array would be ["-I", "cisco.com"]."` + args []string `help:"The arguments to the command, with each item as an element in an array. Example: for curl -I cisco.com, the arguments array would be ['-I', 'cisco.com']."` cmd string `help:"The terminal command to be run, withouth the arguments. Ie: ping, whoami, curl."` } diff --git a/modules/github/settings.go b/modules/github/settings.go index a41c19d0..c8b2f884 100644 --- a/modules/github/settings.go +++ b/modules/github/settings.go @@ -19,7 +19,7 @@ type Settings struct { customQueries []customQuery `help:"Custom queries allow you to filter pull requests and issues however you like. Give the query a title and a filter. Filters can be copied directly from GitHub’s UI." optional:"true"` enableStatus bool `help:"Display pull request mergeability status (‘dirty’, ‘clean’, ‘unstable’, ‘blocked’)." optional:"true"` repositories []string `help:"A list of github repositories." values:"Example: wtfutil/wtf"` - uploadURL string `help:"Your GitHub Enterprise upload URL (often the same as API URL). optional:"true"` + uploadURL string `help:"Your GitHub Enterprise upload URL (often the same as API URL)." optional:"true"` username string `help:"Your GitHub username. Used to figure out which review requests you’ve been added to."` }