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

Commit 959bc3c

Browse files
committed
Fix regression when printing final history
File size estimates were lost because we delete the temp dir too early.
1 parent 1348957 commit 959bc3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ func main() {
194194
}
195195

196196
debug("Done. New image created.")
197-
signals <- os.Interrupt
198-
wg.Wait()
199197
// print our new history
200198
export.PrintHistory()
201199

200+
signals <- os.Interrupt
201+
wg.Wait()
202202
}

0 commit comments

Comments
 (0)