mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
Generally stderr is the conventional place for this sort of running commentary, and it's better set up for it: by default stdout may have a buffer inside the process so that things written to it don't reach the outside until later, while stderr is always by default unbuffered, so messages are printed immediately. Here, until the previous commit, because our color-reset sequence was being printed without a following newline (with `echo -n`), it was getting buffered; and then error messages from `scrapy` to stderr were being erroneously painted with the color intended for the message "Testing links in documentation...".
1.1 KiB
Executable File
1.1 KiB
Executable File