From b04ae1e76ca38692e048f95cde397d0547dd3718 Mon Sep 17 00:00:00 2001 From: gggwvg Date: Mon, 22 Jul 2019 18:23:43 +0800 Subject: [PATCH] remove redundant text --- goconvey.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/goconvey.go b/goconvey.go index 2e1be674..16a6daf4 100644 --- a/goconvey.go +++ b/goconvey.go @@ -42,9 +42,9 @@ func flags() { flag.IntVar(&depth, "depth", -1, "The directory scanning depth. If -1, scan infinitely deep directory structures. 0: scan working directory. 1+: Scan into nested directories, limited to value.") flag.StringVar(&timeout, "timeout", "0", "The test execution timeout if none is specified in the *.goconvey file (default is '0', which is the same as not providing this option).") flag.StringVar(&watchedSuffixes, "watchedSuffixes", ".go", "A comma separated list of file suffixes to watch for modifications.") - flag.StringVar(&excludedDirs, "excludedDirs", "vendor,node_modules", "A comma separated list of directories that will be excluded from being watched") - flag.StringVar(&workDir, "workDir", "", "set goconvey working directory (default current directory)") - flag.BoolVar(&autoLaunchBrowser, "launchBrowser", true, "toggle auto launching of browser (default: true)") + flag.StringVar(&excludedDirs, "excludedDirs", "vendor,node_modules", "A comma separated list of directories that will be excluded from being watched.") + flag.StringVar(&workDir, "workDir", "", "set goconvey working directory (default current directory).") + flag.BoolVar(&autoLaunchBrowser, "launchBrowser", true, "toggle auto launching of browser.") log.SetOutput(os.Stdout) log.SetFlags(log.LstdFlags | log.Lshortfile)