mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-15 13:39:54 -04:00
cli: Don't use \r in plain output
These show up as ^M in test logs, and that is irritating. Just use \n when producing plain output. Closes: https://github.com/flatpak/flatpak/issues/3226
This commit is contained in:
committed by
Alexander Larsson
parent
2dc0554f10
commit
653fce251f
@@ -345,7 +345,7 @@ progress_changed_cb (FlatpakTransactionProgress *progress,
|
||||
g_print ("\r%s", str->str); /* redraw failed, just update the progress */
|
||||
}
|
||||
else
|
||||
g_print ("\r%s", str->str);
|
||||
g_print ("\n%s", str->str);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
Reference in New Issue
Block a user