From f62b571ca391ce80256a070851be4ce342cbf7a3 Mon Sep 17 00:00:00 2001 From: Silvin Lubecki Date: Tue, 15 Dec 2020 17:41:07 +0100 Subject: [PATCH] Fix some indentation issues Signed-off-by: Silvin Lubecki --- internal/commands/tag/inspect.go | 4 ++-- internal/commands/tag/testdata/printimage.golden | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/commands/tag/inspect.go b/internal/commands/tag/inspect.go index af35119..f0f1c56 100644 --- a/internal/commands/tag/inspect.go +++ b/internal/commands/tag/inspect.go @@ -204,7 +204,7 @@ func printConfig(out io.Writer, image *Image) error { fmt.Fprintf(out, ansi.Title("Config:")+"\n") fmt.Fprintf(out, ansi.Key("MediaType:")+"\t%s\n", image.Manifest.Config.MediaType) fmt.Fprintf(out, ansi.Key("Size:")+"\t\t%v\n", units.HumanSize(float64(image.Manifest.Config.Size))) - fmt.Fprintf(out, ansi.Key("Digest:")+"\t%s\n", image.Manifest.Config.Digest) + fmt.Fprintf(out, ansi.Key("Digest:")+"\t\t%s\n", image.Manifest.Config.Digest) if len(image.Config.Config.Cmd) > 0 { fmt.Fprintf(out, ansi.Key("Command:")+"\t%q\n", strings.TrimPrefix(strings.Join(image.Config.Config.Cmd, " "), "/bin/sh -c ")) } @@ -256,7 +256,7 @@ func printLayers(out io.Writer, image *Image) error { } fmt.Fprintf(out, ansi.Key("MediaType:")+"\t%s\n", layer.MediaType) fmt.Fprintf(out, ansi.Key("Size:")+"\t\t%v\n", units.HumanSize(float64(layer.Size))) - fmt.Fprintf(out, ansi.Key("Digest:")+"\t%s\n", layer.Digest) + fmt.Fprintf(out, ansi.Key("Digest:")+"\t\t%s\n", layer.Digest) if len(image.Manifest.Layers) == len(history) { fmt.Fprintf(out, ansi.Key("Command:")+"\t%s\n", cleanCreatedBy(history[i].CreatedBy)) if history[i].Created != nil { diff --git a/internal/commands/tag/testdata/printimage.golden b/internal/commands/tag/testdata/printimage.golden index 9e74824..5a212b7 100644 --- a/internal/commands/tag/testdata/printimage.golden +++ b/internal/commands/tag/testdata/printimage.golden @@ -13,7 +13,7 @@ Created: Less than a second ago Config: MediaType: mediatype/config Size: 123B -Digest: sha256:beef +Digest: sha256:beef Command: "./cmd parameter" Entrypoint: "./entrypoint parameter" User: user @@ -30,6 +30,6 @@ Stop signal: SIGTERM Layers: MediaType: mediatype/layer Size: 456B -Digest: sha256:c0ffee +Digest: sha256:c0ffee Command: apt-get install Created: Less than a second ago