Skip to content

Commit

Permalink
Adding and fixing hints
Browse files Browse the repository at this point in the history
- dockerx is a CLI plugin. The link was potining to docker engine, which
isn't helpful when trying to get dockerx.

- VBoxHeadless had issues in my env, and it wasn't obvious until I ran
  VBoxHeadless --help

Signed-off-by: Joe Talerico <rook@isovalent.com>
  • Loading branch information
Joe Talerico authored and kkourt committed Jan 24, 2022
1 parent f9a6011 commit bc59fc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/dev-doctor/rootcmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func rootCmdRun(cmd *cobra.Command, args []string) {
ifNotFound: checkWarning,
versionArgs: []string{"buildx", "version"},
versionRegexp: regexp.MustCompile(`github\.com/docker/buildx v(\d+\.\d+\.\d+)`),
hint: "see https://docs.docker.com/engine/install/",
hint: "see https://docs.docker.com/buildx/working-with-buildx/",
},
&binaryCheck{
name: "ginkgo",
Expand Down Expand Up @@ -139,6 +139,7 @@ func rootCmdRun(cmd *cobra.Command, args []string) {
ifNotFound: checkInfo,
versionArgs: []string{"--version"},
versionRegexp: regexp.MustCompile(`Oracle VM VirtualBox Headless Interface (\d+\.\d+\.\d+\S*)`),
hint: "run \"VBoxHeadless --help\" to diagnose why vboxheadless failed to execute",
},
&binaryCheck{
name: "pip3",
Expand Down

0 comments on commit bc59fc9

Please sign in to comment.