Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Commit

Permalink
Print history in order displayed by docker
Browse files Browse the repository at this point in the history
It was printed in reverse by mistake.
  • Loading branch information
jwilder committed Sep 19, 2014
1 parent 44a67d8 commit 7e556f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion export.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ func (e *Export) PrintHistory() {
}
}

for i := len(order) - 1; i >= 0; i-- {
for i := 0; i < len(order); i++ {
stat, err := os.Stat(order[i].LayerTarPath)
size := int64(-1)
if stat != nil && err == nil {
Expand Down

0 comments on commit 7e556f7

Please sign in to comment.