--- commit_chekouts.sh 2006/11/05 11:26:37 763 +++ commit_chekouts.sh 2007/02/04 14:16:15 764 @@ -6,7 +6,9 @@ changed=`svn -q status && echo 1` if [ "$changed" == '1' ] ; then echo "commiting changes in $name" - cd "$basedir$name" && svn commit -m "local changes" || exit 1 + if [ '$name' != 'hidra' ] ; then + cd "$basedir$name" && svn commit -m "local changes" || exit 1 + fi else echo "no changes in $name" fi