Skip to content

Commit

Permalink
Print errors on stderr in install/update
Browse files Browse the repository at this point in the history
If we're not doing fancy ui, print errors on stderr. This was biting me
in some tests where I'd like to grep for some strings in the stderr
output.
  • Loading branch information
alexlarsson committed Oct 16, 2019
1 parent 236c8bb commit 215e32c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/flatpak-cli-transaction.c
Expand Up @@ -494,7 +494,7 @@ operation_error (FlatpakTransaction *transaction,
redraw (self);
}
else
g_print ("\r%-*s\n", self->table_width, text);
g_printerr ("\r%-*s\n", self->table_width, text);

if (!non_fatal && self->stop_on_first_error)
return FALSE;
Expand Down

0 comments on commit 215e32c

Please sign in to comment.