mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
Remove bash construct
Now it should work with any sh compatible shell
This commit is contained in:
parent
bb5c9fc19a
commit
1e4700b277
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user