From aa5e7f2747a6e0514e196957a87d2c9dd3b1e94d Mon Sep 17 00:00:00 2001
From: AustinSanders <arsanders@usgs.gov>
Date: Tue, 29 Sep 2020 18:51:01 -0700
Subject: [PATCH] remove quiet flag from conda build

travis build fails because of no output for >10 minutes.  Removing quiet flag might generate additional output needed to keep the build alive.
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index fef41ff..c93f2fc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -55,7 +55,7 @@ after_success:
   - source deactivate
   - conda install -q conda-build anaconda-client
   - conda config --set anaconda_upload no
-  - conda build recipe -q
+  - conda build recipe
   - builddir=(`conda build recipe --output`)
   - |
     if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
-- 
GitLab