mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/internal/moddeps: fix typo in TestAllDependencies log messages
s/dependecies/dependencies/ Change-Id: I454668a36192e345965173d76be12cbd5917ea34 Reviewed-on: https://go-review.googlesource.com/c/go/+/301849 Trust: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
This commit is contained in:
parent
c4190fc34d
commit
a8d9fb2fcd
1 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ func TestAllDependencies(t *testing.T) {
|
|||
_, err := cmd.Output()
|
||||
if err != nil {
|
||||
t.Errorf("%s: %v\n%s", strings.Join(cmd.Args, " "), err, cmd.Stderr)
|
||||
t.Logf("(Run 'go mod vendor' in %s to ensure that dependecies have been vendored.)", m.Dir)
|
||||
t.Logf("(Run 'go mod vendor' in %s to ensure that dependencies have been vendored.)", m.Dir)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
|
@ -179,7 +179,7 @@ func TestAllDependencies(t *testing.T) {
|
|||
r.run(t, goBinCopy, "generate", `-run=^//go:generate bundle `, pkgs) // See issue 41409.
|
||||
advice := "$ cd " + m.Dir + "\n" +
|
||||
"$ go mod tidy # to remove extraneous dependencies\n" +
|
||||
"$ go mod vendor # to vendor dependecies\n" +
|
||||
"$ go mod vendor # to vendor dependencies\n" +
|
||||
"$ go generate -run=bundle " + pkgs + " # to regenerate bundled packages\n"
|
||||
if m.Path == "std" {
|
||||
r.run(t, goBinCopy, "generate", "syscall", "internal/syscall/...") // See issue 43440.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue