From 46dfa682e7417268420ac59a18961864f5ab35a4 Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Tue, 19 Apr 2016 22:58:37 -0700 Subject: [PATCH] test: display failure output for gosimple --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test b/test index 0c2a0a16d..6c48758c4 100755 --- a/test +++ b/test @@ -115,7 +115,7 @@ function fmt_tests { if which gosimple >/dev/null; then echo "gosimple is installed..." for path in $GOSIMPLE_UNUSED_PATHS; do - simplResult=$(gosimple $REPO_PATH/${path}) + simplResult=`gosimple $REPO_PATH/${path} || true` if [ -n "${simplResult}" ]; then echo -e "gosimple checking ${path} failed:\n${simplResult}" exit 255