Skip to content

Commit 9fe8a1f

Browse files
authoredAug 4, 2020
Merge pull request #4625 from tstromberg/survey-fix
Clarify 'survey' command text
2 parents 6520ff3 + 6a016f0 commit 9fe8a1f

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed
 

Diff for: ‎cmd/skaffold/app/cmd/survey.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727

2828
func NewCmdSurvey() *cobra.Command {
2929
return NewCmd("survey").
30-
WithDescription("Show Skaffold survey url").
30+
WithDescription("Opens a web browser to fill out the Skaffold survey").
3131
NoArgs(showSurvey)
3232
}
3333

Diff for: ‎docs/content/en/docs/references/cli/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Other Commands:
8787
credits Export third party notices to given path (./skaffold-credits by default)
8888
diagnose Run a diagnostic on Skaffold
8989
schema List and print json schemas used to validate skaffold.yaml configuration
90-
survey Show Skaffold survey url
90+
survey Opens a web browser to fill out the Skaffold survey
9191
version Print the version information
9292
9393
Use "skaffold <command> --help" for more information about a given command.
@@ -930,7 +930,7 @@ Env vars:
930930

931931
### skaffold survey
932932

933-
Show Skaffold survey url
933+
Opens a web browser to fill out the Skaffold survey
934934

935935
```
936936

Diff for: ‎pkg/skaffold/survey/survey.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,12 @@ const (
3737

3838
var (
3939
Form = fmt.Sprintf(`Thank you for offering your feedback on Skaffold! Understanding your experiences and opinions helps us make Skaffold better for you and other users.
40-
Our survey can be found here: %s
4140
42-
To permanently disable the survey prompt, run:
41+
Skaffold will now attempt to open the survey in your default web browser. You may also manually open it using this link:
42+
43+
%s
44+
45+
Tip: To permanently disable the survey prompt, run:
4346
skaffold config set --survey --global disable-prompt true`, URL)
4447

4548
// for testing

0 commit comments

Comments
 (0)