Skip to content

Commit 46663fc

Browse files
committed
Write error message to stderr
1 parent 7d2dfe5 commit 46663fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [[ $OUTPUT =~ $PERC_REGEX ]]; then
2828
PERCENTAGE="$((${BASH_REMATCH[1]}))"
2929
if [[ $PERCENTAGE -lt 80 ]]
3030
then
31-
echo "Code coverage threshold not reached"
31+
>&2 echo "Code coverage threshold not reached"
3232
exit 3
3333
fi
3434
fi

0 commit comments

Comments
 (0)