NIFI-5089: Exclude Maven progress output from Travis builds

This closes #2641.

Signed-off-by: Kevin Doran <kdoran@apache.org>
This commit is contained in:
Matthew Burgess 2018-04-17 17:57:04 -04:00 committed by Kevin Doran
parent 6d06defa63
commit 6d804ee1fe
No known key found for this signature in database
GPG Key ID: 5621A6244B77AC02
1 changed files with 1 additions and 1 deletions

View File

@ -55,4 +55,4 @@ script:
# Note: The reason the sed is done as part of script is to ensure the pom hack
# won't affect the 'clean install' above
- bash .travis.sh
- mvn -T 2 clean install -Pcontrib-check,include-grpc,include-atlas -Ddir-only | grep -v "\[WARNING\]" | grep -v "Downloading from" | grep -v "Copying " && exit ${PIPESTATUS[0]}
- mvn -T 2 clean install -Pcontrib-check,include-grpc,include-atlas -Ddir-only | grep -v "\[WARNING\]" | grep -v "Downloading from" | grep -v "Copying " | grep -v "Progress " && exit ${PIPESTATUS[0]}