From: <cl...@vh...> - 2005-10-12 14:07:16
|
Author: clasohm Date: 2005-10-12 15:57:05 +0200 (Wed, 12 Oct 2005) New Revision: 957 Modified: trunk/tools/misc/build-all.sh Log: added check for applications which are listed in apps-file.txt, but for which no application.xml can be found Modified: trunk/tools/misc/build-all.sh =================================================================== --- trunk/tools/misc/build-all.sh 2005-10-11 21:27:24 UTC (rev 956) +++ trunk/tools/misc/build-all.sh 2005-10-12 13:57:05 UTC (rev 957) @@ -289,6 +289,15 @@ fi done +for app in $apps +do + if ! echo " ${APPS} " | grep -F " ${app} " > /dev/null + then + echo "Could not read $app/*/application.xml." + echo "Make sure to include a copy or symbolic link of this application in the build area." + exit 1 + fi +done BUILD_APPS="" BOOTSTRAP=1 |