summaryrefslogtreecommitdiffstats
path: root/.travis-create-release.sh
diff options
context:
space:
mode:
authorMichael Richardson <mcr@sandelman.ca>2018-03-06 14:18:43 -0500
committerRichard Levitte <levitte@openssl.org>2018-03-08 21:18:35 +0100
commit9967a9edbefcec14f19b64e4bae7a2b5fb0da612 (patch)
treeeaa0b20e7db592c10022bea7299a47b75955be8d /.travis-create-release.sh
parentfb174faaf51d8b11046873a6a51fc2d8d8c28952 (diff)
Reduce travis-ci log output
Travis-ci log output is huge and overflows internal travis-ci view, which makes it hard to find errors. Redirect some output to a file and dump it only if it fails. Remove "v" option from tar that builds and extracts the srcdist. While running the tests manually, some non-POSIX (bashisms) with == vs = came to light. Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5555)
Diffstat (limited to '.travis-create-release.sh')
-rw-r--r--.travis-create-release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis-create-release.sh b/.travis-create-release.sh
index 311cedd69c..b39a00137a 100644
--- a/.travis-create-release.sh
+++ b/.travis-create-release.sh
@@ -5,7 +5,7 @@
./Configure dist
if [ "$1" == osx ]; then
make NAME='_srcdist' TARFILE='_srcdist.tar' \
- TAR_COMMAND='$(TAR) $(TARFLAGS) -cvf -' tar
+ TAR_COMMAND='$(TAR) $(TARFLAGS) -cf -' tar
else
make TARFILE='_srcdist.tar' NAME='_srcdist' dist
fi