backup: Hide status output for narrow terminals

closes #428
This commit is contained in:
Alexander Neumann 2016-02-10 17:28:48 +01:00
parent eccbcb73a1
commit 4ec5050cbb
1 changed files with 7 additions and 3 deletions

View File

@ -153,9 +153,13 @@ func (cmd CmdBackup) newArchiveProgress(todo restic.Stat) *restic.Progress {
w, _, err := terminal.GetSize(int(os.Stdout.Fd()))
if err == nil {
if len(status1)+len(status2) > w {
max := w - len(status2) - 4
status1 = status1[:max] + "... "
maxlen := w - len(status2)
if maxlen < 4 {
status1 = ""
} else if len(status1) > maxlen {
status1 = status1[:maxlen-4]
status1 += "... "
}
}