8
8
"bytes"
9
9
"encoding/hex"
10
10
"flag"
11
- "fmt"
12
11
"go/build"
13
12
"strconv"
14
13
"strings"
@@ -195,14 +194,14 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
195
194
// Bare ensure doesn't take any args.
196
195
if len (args ) != 0 {
197
196
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 )
199
198
}
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" )
201
200
}
202
201
203
202
if cmd .vendorOnly {
204
203
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 )
206
205
}
207
206
// Pass the same lock as old and new so that the writer will observe no
208
207
// difference and choose not to write it out.
@@ -212,7 +211,7 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
212
211
}
213
212
214
213
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 )
216
215
return nil
217
216
}
218
217
@@ -243,7 +242,7 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
243
242
}
244
243
245
244
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 )
247
246
return nil
248
247
}
249
248
@@ -269,7 +268,7 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
269
268
270
269
func (cmd * ensureCommand ) runUpdate (ctx * dep.Ctx , args []string , p * dep.Project , sm gps.SourceManager , params gps.SolveParameters ) error {
271
270
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 )
273
272
}
274
273
275
274
// 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,
287
286
// "pending" changes, or the -update that caused the problem?).
288
287
// TODO(sdboyer) reduce this to a warning?
289
288
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 )
291
290
}
292
291
293
292
// 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,
313
312
}
314
313
315
314
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 )
317
316
}
318
317
319
318
if ! gps .IsAny (pc .Constraint ) {
320
319
// TODO(sdboyer) constraints should be allowed to allow solves that
321
320
// target particular versions while remaining within declared constraints
322
- return errors .Errorf ("-update operates according to constraints declared in %s, not CLI arguments. \n You 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 )
323
322
}
324
323
325
324
params .ToChange = append (params .ToChange , gps .ProjectRoot (arg ))
@@ -352,7 +351,7 @@ func (cmd *ensureCommand) runUpdate(ctx *dep.Ctx, args []string, p *dep.Project,
352
351
353
352
func (cmd * ensureCommand ) runAdd (ctx * dep.Ctx , args []string , p * dep.Project , sm gps.SourceManager , params gps.SolveParameters ) error {
354
353
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" )
356
355
}
357
356
358
357
// 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
370
369
// "pending" changes, or the -add that caused the problem?).
371
370
// TODO(sdboyer) reduce this to a warning?
372
371
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 )
374
373
}
375
374
376
375
rm , errmap := params .RootPackageTree .ToReachMap (true , true , false , p .Manifest .IgnoredPackages ())
0 commit comments