Author: nickboldt
Date: 2010-01-29 16:27:54 -0500 (Fri, 29 Jan 2010)
New Revision: 20027
Modified:
trunk/common/releng/hudson/run.sh
Log:
downgrade from requirement to suggestion in preflight checklist (wget, cvs, svn, javac)
Modified: trunk/common/releng/hudson/run.sh
===================================================================
--- trunk/common/releng/hudson/run.sh 2010-01-29 20:49:01 UTC (rev 20026)
+++ trunk/common/releng/hudson/run.sh 2010-01-29 21:27:54 UTC (rev 20027)
@@ -31,7 +31,7 @@
# check for required platform stuff
missingRequirements=""
-for f in cvs svn javac wget; do
+for f in cvs svn javac wget vncserver Xvfb Xvnc; do
check=$(whereis $f);
if [[ $check == "$f:" ]]; then
missingRequirements="$missingRequirements $f"
@@ -40,20 +40,6 @@
fi
done
if [[ $missingRequirements ]]; then
- echo "ERROR: You must install the following tools for this build to proceed:"
- echo " $missingRequirements"
- exit 1;
-fi
-missingRequirements=""
-for f in vncserver Xvfb Xvnc; do
- check=$(whereis $f);
- if [[ $check == "$f:" ]]; then
- missingRequirements="$missingRequirements $f"
- else
- echo "Found $check"
- fi
-done
-if [[ $missingRequirements ]]; then
echo "WARNING: You may require 1 or more of the following tools for this build to
proceed:"
echo " $missingRequirements"
fi
Show replies by date