Send a fail message if there's no repository
diff --git a/org.eclipse.e4.builder/scripts/buildCBI.sh b/org.eclipse.e4.builder/scripts/buildCBI.sh
index acd997e..2af66c3 100755
--- a/org.eclipse.e4.builder/scripts/buildCBI.sh
+++ b/org.eclipse.e4.builder/scripts/buildCBI.sh
@@ -255,6 +255,14 @@
 -Dmaven.repo.local=$localMavenRepo
 popd
 
+if [ ! -e repository ]; then
+	mailx -s "$e4Stream Build: $buildTag Failed" e4-dev@eclipse.org <<EOF
+Build log: http://build.eclipse.org/eclipse/e4/cbi/log.txt
+
+EOF
+exit 0
+fi
+
 # update the common repo
 
 $ECLIPSE \