From: Jan-Benedict G. <jb...@us...> - 2006-01-01 19:52:36
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15144 Modified Files: update_upstream_cvs_sandboxes.sh Log Message: - Fix error handling. Index: update_upstream_cvs_sandboxes.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/update_upstream_cvs_sandboxes.sh,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- update_upstream_cvs_sandboxes.sh 28 Dec 2005 17:56:30 -0000 1.7 +++ update_upstream_cvs_sandboxes.sh 1 Jan 2006 19:52:25 -0000 1.8 @@ -22,7 +22,7 @@ if [ "${RET}" -eq 0 ]; then break else - if [ "${i}" -eq "${MAX_TIES}" ]; then + if [ "${i}" -eq "${MAX_TRIES}" ]; then echo "Failed ${MAX_TRIES} times to update ${COMPONENT}" >&2 exit 1 fi |