diff mbox series

[v1,7/8] contrib/run_risu.sh: add a visual cue for a clean-run

Message ID 20180223154613.2096-8-alex.bennee@linaro.org
State New
Headers show
Series Group support and random clean-ups | expand

Commit Message

Alex Bennée Feb. 23, 2018, 3:46 p.m. UTC
It saves you from having to check the status code or wonder if the
errors just scrolled off your screen.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

---
 contrib/run_risu.sh | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.15.1
diff mbox series

Patch

diff --git a/contrib/run_risu.sh b/contrib/run_risu.sh
index 2d1897a..fc69d83 100755
--- a/contrib/run_risu.sh
+++ b/contrib/run_risu.sh
@@ -61,6 +61,8 @@  if test ${#failed[@]} -gt 0; then
     for f in "${failed[@]}"; do
         echo "$f"
     done
+else
+    echo "No Failures ;-)"
 fi
 
 exit ${#failed[@]}