Remove bash construct

Now it should work with any sh compatible shell
This commit is contained in:
Georg Baum 2015-05-16 11:11:08 +02:00
parent bb5c9fc19a
commit 1e4700b277

View File

@ -6,7 +6,8 @@ do
echo Testing $i...
dn=`dirname $i`
bn=`basename $i .layout`
if ! ./check_layout ${dn}/${bn}; then
./check_layout ${dn}/${bn}
if [ $? -ne 0 ]; then
retval=1
fi
done