From 104e89e63f72264dc346e6b4276b4cf4a484cb89 Mon Sep 17 00:00:00 2001 From: Steve Purcell Date: Sun, 11 Oct 2015 19:34:48 +1300 Subject: [PATCH] Redirect travis build stderr to stdout, and print when successful --- run-travis-ci.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run-travis-ci.sh b/run-travis-ci.sh index 7aeeeafc47d..b626abcb20f 100755 --- a/run-travis-ci.sh +++ b/run-travis-ci.sh @@ -1,5 +1,6 @@ #!/bin/sh -e +exec 2>&1 cd "$(dirname "$0")" ECUKES_EMACS=${EMACS:-$(which emacs)} @@ -20,3 +21,5 @@ if [ -n "$TRAVIS_COMMIT_RANGE" ]; then "$ECUKES_EMACS" --batch --eval "(progn (load-file \"package-build.el\")(package-build-archive '$recipe_name))" done fi + +echo "Build successful"