Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 238d8af

Browse files
authored
Merge pull request #1109 from ibrasho-forks/fix-out-of-sync-error
Update out-of-sync error message in ensure
2 parents 3b01418 + 8a8d73c commit 238d8af

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cmd/dep/ensure.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ func (cmd *ensureCommand) runUpdate(ctx *dep.Ctx, args []string, p *dep.Project,
333333
// "pending" changes, or the -update that caused the problem?).
334334
// TODO(sdboyer) reduce this to a warning?
335335
if !bytes.Equal(p.Lock.InputHash(), solver.HashInputs()) {
336-
return errors.Errorf("%s and %s are out of sync. Run a plain dep ensure to resync them before attempting to -update", dep.ManifestName, dep.LockName)
336+
return errors.Errorf("%s is out of sync with %s or the project's imports. Run \"dep ensure\" to resync them first before running \"dep ensure -update\"", dep.LockName, dep.ManifestName)
337337
}
338338

339339
// When -update is specified without args, allow every dependency to change
@@ -428,7 +428,7 @@ func (cmd *ensureCommand) runAdd(ctx *dep.Ctx, args []string, p *dep.Project, sm
428428
// "pending" changes, or the -add that caused the problem?).
429429
// TODO(sdboyer) reduce this to a warning?
430430
if p.Lock != nil && !bytes.Equal(p.Lock.InputHash(), solver.HashInputs()) {
431-
return errors.Errorf("%s and %s are out of sync. Run a plain dep ensure to resync them before attempting to -add", dep.ManifestName, dep.LockName)
431+
return errors.Errorf("%s is out of sync with %s or the project's imports. Run \"dep ensure\" to resync them first before running \"dep ensure -add\"", dep.LockName, dep.ManifestName)
432432
}
433433

434434
rm, _ := params.RootPackageTree.ToReachMap(true, true, false, p.Manifest.IgnoredPackages())

cmd/dep/testdata/harness_tests/ensure/add/errs/desync/testcase.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"commands": [
33
["ensure", "-add", "foobar.com/baz"]
44
],
5-
"error-expected": "Gopkg.toml and Gopkg.lock are out of sync. Run a plain dep ensure to resync them before attempting to -add"
5+
"error-expected": "Gopkg.lock is out of sync with Gopkg.toml or the project's imports. Run \"dep ensure\" to resync them first before running \"dep ensure -add\""
66
}

cmd/dep/testdata/harness_tests/ensure/update/errs/desync/testcase.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"commands": [
33
["ensure", "-update"]
44
],
5-
"error-expected": "Gopkg.toml and Gopkg.lock are out of sync. Run a plain dep ensure to resync them before attempting to -update"
5+
"error-expected": "Gopkg.lock is out of sync with Gopkg.toml or the project's imports. Run \"dep ensure\" to resync them first before running \"dep ensure -update\""
66
}

0 commit comments

Comments
 (0)