summaryrefslogtreecommitdiff
path: root/maintainer-scripts/update_web_docs_svn
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2005-10-29 01:19:36 +0000
committerDaniel Berlin <dberlin@gcc.gnu.org>2005-10-29 01:19:36 +0000
commit6d64c3bc07017b42dfff4cfe4b78772e2b62aea1 (patch)
treef1e2100a49930cab4d6ec23553a360946769e7fa /maintainer-scripts/update_web_docs_svn
parent318a2182fc6d7ae16b1033b385045e8229c55b19 (diff)
downloadgcc-6d64c3bc07017b42dfff4cfe4b78772e2b62aea1.tar.gz
update_web_docs_svn: Use -q to quiet svn.
2005-10-26 Daniel Berlin <dberlin@dberlin.org> * update_web_docs_svn: Use -q to quiet svn. From-SVN: r105987
Diffstat (limited to 'maintainer-scripts/update_web_docs_svn')
-rwxr-xr-xmaintainer-scripts/update_web_docs_svn4
1 files changed, 2 insertions, 2 deletions
diff --git a/maintainer-scripts/update_web_docs_svn b/maintainer-scripts/update_web_docs_svn
index 7732101da25..ca9cc0f1122 100755
--- a/maintainer-scripts/update_web_docs_svn
+++ b/maintainer-scripts/update_web_docs_svn
@@ -87,7 +87,7 @@ if [ "$RELEASE" = "trunk" ]; then
svn ls -R $SVNROOT/$RELEASE/gcc | grep "\.texi$" |fgrep -v -f/home/gccadmin/scripts/doc_exclude > FILES
# SVN export doesn't function like CVS, in that it doesn't create an entire empty path structure
# Thus, it's easiest to just export the entire tree
- svn export $SVNROOT/$RELEASE gcc
+ svn -q export $SVNROOT/$RELEASE gcc
# # Checkout all the texi files.
# for i in `cat FILES`; do
# svn -q export $SVNROOT/$RELEASE/gcc/$i
@@ -102,7 +102,7 @@ else
svn ls -R $SVNROOT/tags/$RELEASE/gcc | grep "\.texi$" |fgrep -v -f/home/gccadmin/scripts/doc_exclude > FILES
# SVN export doesn't function like CVS, in that it doesn't create an entire empty path structure
# Thus, it's easiest to just export the entire tree
- svn export $SVNROOT/tags/$RELEASE gcc
+ svn -q export $SVNROOT/tags/$RELEASE gcc
# # Checkout all the texi files.
# for i in `cat FILES`; do
# svn -q export $SVNROOT/tags/$RELEASE/gcc/$i