diff options
Diffstat (limited to 'cmd/krino/undo.go')
| -rw-r--r-- | cmd/krino/undo.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/krino/undo.go b/cmd/krino/undo.go index 1b5e6ae..4c71fdd 100644 --- a/cmd/krino/undo.go +++ b/cmd/krino/undo.go @@ -317,7 +317,7 @@ func releaseUndoLocks(locks []*lock.Lock) []error { // left out of the plan entirely, as review's [w] leaves a forward file // unlogged, and counted in notReviewed (review cli F2). func finalizeUndoPlan(up *engine.UndoPlan, approved map[int]bool, action rune) (plan *engine.UndoPlan, notReviewed int) { - out := &engine.UndoPlan{Run: up.Run} + out := &engine.UndoPlan{Run: up.Run, Cleanup: up.Cleanup} for i, f := range up.Files { if f.Refused == "" { yes, decided := approved[i] |
