Improve a travis output message in pull request builds

The output message is now more explicit and doesn't look like an
error message.
This commit is contained in:
Daniel Thayer 2018-08-02 16:12:26 -05:00
parent 8c8b55cd18
commit 29c179c30d

View file

@ -149,7 +149,7 @@ run() {
elif [ -n "${TRAVIS_PULL_REQUEST}" ] && [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then
# For pull request builds, the private key is not available, so skip
# the private tests to avoid failing.
echo "Note: skipping private tests because encrypted env. variables are not defined."
echo "Note: skipping private tests because encrypted env. variables are not available in pull request builds."
else
echo "Error: cannot get private tests because encrypted env. variables are not defined."
exit 1