Merge pull request #1404 from WeiZhang555/add-newline

Add newline char to avoid mix of logs
This commit is contained in:
Michael Crosby 2017-08-21 11:12:42 -04:00 committed by GitHub
commit 4c5f824167

View File

@ -37,7 +37,7 @@ command. As part of this process, we do the following:
log.G(ctx).WithField("image", ref).Debug("unpacking") log.G(ctx).WithField("image", ref).Debug("unpacking")
// TODO: Show unpack status // TODO: Show unpack status
fmt.Printf("unpacking %s...", img.Target().Digest) fmt.Printf("unpacking %s...\n", img.Target().Digest)
err = img.Unpack(ctx, clicontext.String("snapshotter")) err = img.Unpack(ctx, clicontext.String("snapshotter"))
fmt.Println("done") fmt.Println("done")
return err return err