Minor change to documentation on runner.DefaultChromePath consts

This commit is contained in:
Kenneth Shaw 2017-12-22 08:43:51 +07:00
parent dde782082b
commit 514f86f131
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@
package runner package runner
const ( const (
// DefaultChromePath is the default path to the Chrome application.
DefaultChromePath = `/Applications/Google Chrome.app/Contents/MacOS/Google Chrome` DefaultChromePath = `/Applications/Google Chrome.app/Contents/MacOS/Google Chrome`
) )

View File

@ -5,7 +5,8 @@ package runner
import "os/exec" import "os/exec"
const ( const (
// DefaultChromePath is the default path to the google-chrome executable. // DefaultChromePath is the default path to the google-chrome executable if
// a variant cannot be found on $PATH.
DefaultChromePath = "/usr/bin/google-chrome" DefaultChromePath = "/usr/bin/google-chrome"
) )