Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some indentation issues #148

Merged
merged 1 commit into from
Dec 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/commands/tag/inspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 "))
}
Expand Down Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions internal/commands/tag/testdata/printimage.golden
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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