@@ -265,7 +265,7 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
265
265
// that "verification" is supposed to look like (#121); in the meantime,
266
266
// we unconditionally write out vendor/ so that `dep ensure`'s behavior
267
267
// is maximally compatible with what it will eventually become.
268
- sw , err := dep .NewSafeWriter (nil , p .Lock , p .Lock , dep .VendorAlways )
268
+ sw , err := dep .NewSafeWriter (nil , p .Lock , p .Lock , dep .VendorAlways , p . Manifest . PruneOptions )
269
269
if err != nil {
270
270
return err
271
271
}
@@ -290,7 +290,7 @@ func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project
290
290
return handleAllTheFailuresOfTheWorld (err )
291
291
}
292
292
293
- sw , err := dep .NewSafeWriter (nil , p .Lock , dep .LockFromSolution (solution ), cmd .vendorBehavior ())
293
+ sw , err := dep .NewSafeWriter (nil , p .Lock , dep .LockFromSolution (solution ), cmd .vendorBehavior (), p . Manifest . PruneOptions )
294
294
if err != nil {
295
295
return err
296
296
}
@@ -315,7 +315,7 @@ func (cmd *ensureCommand) runVendorOnly(ctx *dep.Ctx, args []string, p *dep.Proj
315
315
}
316
316
// Pass the same lock as old and new so that the writer will observe no
317
317
// difference and choose not to write it out.
318
- sw , err := dep .NewSafeWriter (nil , p .Lock , p .Lock , dep .VendorAlways )
318
+ sw , err := dep .NewSafeWriter (nil , p .Lock , p .Lock , dep .VendorAlways , p . Manifest . PruneOptions )
319
319
if err != nil {
320
320
return err
321
321
}
@@ -380,7 +380,7 @@ func (cmd *ensureCommand) runUpdate(ctx *dep.Ctx, args []string, p *dep.Project,
380
380
return handleAllTheFailuresOfTheWorld (err )
381
381
}
382
382
383
- sw , err := dep .NewSafeWriter (nil , p .Lock , dep .LockFromSolution (solution ), cmd .vendorBehavior ())
383
+ sw , err := dep .NewSafeWriter (nil , p .Lock , dep .LockFromSolution (solution ), cmd .vendorBehavior (), p . Manifest . PruneOptions )
384
384
if err != nil {
385
385
return err
386
386
}
@@ -679,7 +679,7 @@ func (cmd *ensureCommand) runAdd(ctx *dep.Ctx, args []string, p *dep.Project, sm
679
679
}
680
680
sort .Strings (reqlist )
681
681
682
- sw , err := dep .NewSafeWriter (nil , p .Lock , dep .LockFromSolution (solution ), dep .VendorOnChanged )
682
+ sw , err := dep .NewSafeWriter (nil , p .Lock , dep .LockFromSolution (solution ), dep .VendorOnChanged , p . Manifest . PruneOptions )
683
683
if err != nil {
684
684
return err
685
685
}
0 commit comments