backup.go: Add newline when adding file

This commit is contained in:
Tom Wiesing 2023-03-28 10:41:46 +02:00
parent b6d3575ee9
commit 1f8c55da7c
No known key found for this signature in database

View file

@ -89,7 +89,7 @@ func (bc *stagingContext) sendPath(path string) {
return return
} }
io.WriteString(bc.progress, dst) io.WriteString(bc.progress, dst+"\n")
bc.manifest <- dst bc.manifest <- dst
} }