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

Commit 05b2e9f

Browse files
committed
Improve errors for many ensure failure modes
1 parent 8239b96 commit 05b2e9f

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

cmd/dep/ensure.go

+11-12
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import (
88
"bytes"
99
"encoding/hex"
1010
"flag"
11-
"fmt"
1211
"go/build"
1312
"strconv"
1413
"strings"
@@ -195,14 +194,14 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
195194
// Bare ensure doesn't take any args.
196195
if len(args) != 0 {
197196
if cmd.vendorOnly {
198-
return errors.Errorf("dep ensure -vendor-only only populates vendor/ from %s; it takes no spec arguments.", dep.LockName)
197+
return errors.Errorf("dep ensure -vendor-only only populates vendor/ from %s; it takes no spec arguments", dep.LockName)
199198
}
200-
return errors.New("dep ensure only takes spec arguments with -add or -update - did you want one of those?")
199+
return errors.New("dep ensure only takes spec arguments with -add or -update")
201200
}
202201

203202
if cmd.vendorOnly {
204203
if p.Lock == nil {
205-
return errors.Errorf("no %s exists from which to populate vendor/ directory", dep.LockName)
204+
return errors.Errorf("no %s exists from which to populate vendor/", dep.LockName)
206205
}
207206
// Pass the same lock as old and new so that the writer will observe no
208207
// difference and choose not to write it out.
@@ -212,7 +211,7 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
212211
}
213212

214213
if cmd.dryRun {
215-
fmt.Printf("Would have populated vendor/ directory from %s", dep.LockName)
214+
ctx.Loggers.Out.Printf("Would have populated vendor/ directory from %s", dep.LockName)
216215
return nil
217216
}
218217

@@ -243,7 +242,7 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
243242
}
244243

245244
if cmd.dryRun {
246-
fmt.Printf("Would have populated vendor/ directory from %s", dep.LockName)
245+
ctx.Loggers.Out.Printf("Would have populated vendor/ directory from %s", dep.LockName)
247246
return nil
248247
}
249248

@@ -269,7 +268,7 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
269268

270269
func (cmd *ensureCommand) runUpdate(ctx *dep.Ctx, args []string, p *dep.Project, sm gps.SourceManager, params gps.SolveParameters) error {
271270
if p.Lock == nil {
272-
return errors.Errorf("%s does not exist. nothing to do, as -update works by updating the values in %s.", dep.LockName, dep.LockName)
271+
return errors.Errorf("-update works by updating the versions recorded in %s, but %s does not exist", dep.LockName, dep.LockName)
273272
}
274273

275274
// We'll need to discard this prepared solver as later work changes params,
@@ -287,7 +286,7 @@ func (cmd *ensureCommand) runUpdate(ctx *dep.Ctx, args []string, p *dep.Project,
287286
// "pending" changes, or the -update that caused the problem?).
288287
// TODO(sdboyer) reduce this to a warning?
289288
if !bytes.Equal(p.Lock.InputHash(), solver.HashInputs()) {
290-
return errors.Errorf("%s and %s are out of sync. run a plain dep ensure to resync them before attempting an -update.", dep.ManifestName, dep.LockName)
289+
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)
291290
}
292291

293292
// When -update is specified without args, allow every dependency to change
@@ -313,13 +312,13 @@ func (cmd *ensureCommand) runUpdate(ctx *dep.Ctx, args []string, p *dep.Project,
313312
}
314313

315314
if pc.Ident.Source != "" {
316-
return errors.Errorf("cannot specify alternate sources on -update (%s)", pc.Ident)
315+
return errors.Errorf("cannot specify alternate sources on -update (%s)", pc.Ident.Source)
317316
}
318317

319318
if !gps.IsAny(pc.Constraint) {
320319
// TODO(sdboyer) constraints should be allowed to allow solves that
321320
// target particular versions while remaining within declared constraints
322-
return errors.Errorf("-update operates according to constraints declared in %s, not CLI arguments.\nYou passed in %s for %s", dep.ManifestName, pc.Constraint, pc.Ident.ProjectRoot)
321+
return errors.Errorf("version constraint %s passed for %s, but -update follows constraints declared in %s, not CLI arguments", pc.Constraint, pc.Ident.ProjectRoot, dep.ManifestName)
323322
}
324323

325324
params.ToChange = append(params.ToChange, gps.ProjectRoot(arg))
@@ -352,7 +351,7 @@ func (cmd *ensureCommand) runUpdate(ctx *dep.Ctx, args []string, p *dep.Project,
352351

353352
func (cmd *ensureCommand) runAdd(ctx *dep.Ctx, args []string, p *dep.Project, sm gps.SourceManager, params gps.SolveParameters) error {
354353
if len(args) == 0 {
355-
return errors.New("must specify at least one project or package to add")
354+
return errors.New("must specify at least one project or package to -add")
356355
}
357356

358357
// We'll need to discard this prepared solver as later work changes params,
@@ -370,7 +369,7 @@ func (cmd *ensureCommand) runAdd(ctx *dep.Ctx, args []string, p *dep.Project, sm
370369
// "pending" changes, or the -add that caused the problem?).
371370
// TODO(sdboyer) reduce this to a warning?
372371
if !bytes.Equal(p.Lock.InputHash(), solver.HashInputs()) {
373-
return errors.Errorf("%s and %s are out of sync. run a plain dep ensure to resync them before attempting an -add.", dep.ManifestName, dep.LockName)
372+
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)
374373
}
375374

376375
rm, errmap := params.RootPackageTree.ToReachMap(true, true, false, p.Manifest.IgnoredPackages())

0 commit comments

Comments
 (0)