commands/uploader: store committer name and email on uploadContext

This commit is contained in:
Taylor Blau 2017-01-13 11:25:21 -07:00
parent ebdeaa1a57
commit be3f2deb63

@ -40,6 +40,7 @@ func newUploadContext(remote string, dryRun bool) *uploadContext {
ctx.meter = buildProgressMeter(ctx.DryRun)
ctx.tq = newUploadQueue(ctx.Manifest, ctx.Remote, tq.WithProgress(ctx.meter), tq.DryRun(ctx.DryRun))
ctx.committerName, ctx.committerEmail = cfg.CurrentCommitter()
return ctx
}