Skip to content
Snippets Groups Projects
Commit 3532767f authored by Graeme A Stewart's avatar Graeme A Stewart
Browse files

Improve error reporting from build_*.sh scripts

Suppress the bogus errors from the "ls" command in AtlasExternals
GIve an explicit error message if error count is non-zero at end of scripts
parent 6f187e0e
No related branches found
No related tags found
No related merge requests found
......@@ -107,4 +107,8 @@ cpack || ((ERROR_COUNT++))
mkdir -p ${RPMDIR} || ((ERROR_COUNT++))
cp GAUDI*.rpm ${RPMDIR} || ((ERROR_COUNT++))
if [ $ERROR_COUNT -ne 0 ]; then
echo "Gaudi build script counted $ERROR_COUNT errors"
fi
exit ${ERROR_COUNT}
......@@ -98,7 +98,11 @@ fi
# Build the RPM or other package for the project:
cpack || ((ERROR_COUNT++))
mkdir -p ${RPMDIR} || ((ERROR_COUNT++))
FILES=$(ls ${PROJECT}*.rpm ${PROJECT}*.tar.gz ${PROJECT}*.dmg)
FILES=$(ls ${PROJECT}*.rpm ${PROJECT}*.tar.gz ${PROJECT}*.dmg 2> /dev/null)
cp ${FILES} ${RPMDIR} || ((ERROR_COUNT++))
if [ $ERROR_COUNT -ne 0 ]; then
echo "AtlasExternals build script counted $ERROR_COUNT errors"
fi
exit ${ERROR_COUNT}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment