kill Xvfb on error

This commit is contained in:
Roman Bovsunivskiy
2010-02-28 19:09:11 +00:00
parent ae1e479fa4
commit 40d242268c
+1 -1
View File
@@ -10,7 +10,7 @@ for directory in `find . -maxdepth 1 -type d -regex '\./[A-Za-z0-9\-\_]*'`
do
cd $directory
[ ! -e Makefile ] && qmake -spec $QMAKESPEC
$commands || exit 1
$commands || { kill $PID; exit 1; }
cd -
done