mirror of https://github.com/zulip/zulip.git
test-documentation: Send messages to stderr, not stdout.
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...".
This commit is contained in:
parent
618beb7110
commit
d66f081af8
|
@ -3,7 +3,7 @@ set -e
|
|||
|
||||
color_message () {
|
||||
local color_code="$1" message="$2"
|
||||
echo -e "\e[${color_code}m${message}\e[0m"
|
||||
echo -e "\e[${color_code}m${message}\e[0m" >&2
|
||||
}
|
||||
|
||||
case $1 in
|
||||
|
|
Loading…
Reference in New Issue