diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-04-12 15:04:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-04-12 15:04:54 +0100 |
| commit | 134af470d2f35745548ec4c581c43af230187f15 (patch) | |
| tree | 6405cf5969416c065cc0ed06e0e7d3b754b743a9 | |
| parent | 4b8c626b7e66ab1d4d69606e10316542c8873842 (diff) | |
Detect errors correctly from dcpinfo.
| -rwxr-xr-x | run/tests | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -#!/bin/bash -e +#!/bin/bash # # Run our test suite. @@ -71,7 +71,7 @@ fi rm -f $work/info.log for d in `find $private/metadata -mindepth 1 -maxdepth 1 -type d | sort -f -d`; do if [ `basename $d` != ".git" ]; then - $dcpinfo --ignore-missing-assets -k -s $d 2> /dev/null >> $work/info.log + $dcpinfo --ignore-missing-assets -k -s $d >> $work/info.log if [ "$?" != "0" ]; then echo "FAIL: dcpinfo failed for $d" exit 1 |
