Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27a361c commit 4c6476bCopy full SHA for 4c6476b
1 file changed
.travis/trigger_travis.sh
@@ -13,6 +13,7 @@
13
# the job, but won't be visible to anyone browsing https://travis-ci.org/.
14
#
15
16
+echoerr() { echo "$@" 1>&2; }
17
18
TRAVIS_URL=travis-ci.org
19
BRANCH=develop
@@ -51,15 +52,15 @@ for DOWNSTREAM_BUILD in "${REPO_MATRIX[@]}"; do
51
52
53
if grep -q '"@type": "error"' ${DOWNSTREAM_BUILD}-output.txt; then
54
RESULT=0
- echo ""
55
- echo "Failed to start ${DOWNSTREAM_BUILD}"
56
+ echoerr ""
+ echoerr "Failed to start ${DOWNSTREAM_BUILD}"
57
58
fi
59
if grep -q 'access denied' ${DOWNSTREAM_BUILD}-output.txt; then
60
61
62
63
64
65
66
done
0 commit comments