Signed-off-by: Jordan Crouse jordan.crouse@amd.com Index: buildrom/bin/fetchsvn.sh =================================================================== --- buildrom.orig/bin/fetchsvn.sh 2007-06-12 15:55:54.000000000 -0600 +++ buildrom/bin/fetchsvn.sh 2007-06-12 15:56:00.000000000 -0600 @@ -6,6 +6,13 @@ REV=$3 TARBALL=$4
+SVNV=`svn --version --quiet` + +if [ $? -ne 0 ]; then + echo "You don't have SVN installed." + exit 1 +fi + # Simple case - the repository doesn't exist
if [ ! -d $DIR/svn/.svn ]; then