diff options
author | Rob Holland <robh@gentoo.org> | 2003-07-14 09:17:39 +0000 |
---|---|---|
committer | Rob Holland <robh@gentoo.org> | 2003-07-14 09:17:39 +0000 |
commit | ef2895a01b16c878dfe10ef5c20d9e0d61954a58 (patch) | |
tree | 19f4bab13fa2d777b628bfaddd810d48818dd96c /admin | |
parent | 2003 07 14 3/4 translation (diff) | |
download | gentoo-ef2895a01b16c878dfe10ef5c20d9e0d61954a58.tar.gz gentoo-ef2895a01b16c878dfe10ef5c20d9e0d61954a58.tar.bz2 gentoo-ef2895a01b16c878dfe10ef5c20d9e0d61954a58.zip |
include gentoo-src in viewcvs
Diffstat (limited to 'admin')
-rw-r--r-- | admin/www.gentoo.org/scripts/cvs-repo-update.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/admin/www.gentoo.org/scripts/cvs-repo-update.sh b/admin/www.gentoo.org/scripts/cvs-repo-update.sh index 8d2cbf3ec0..4c8b19975c 100644 --- a/admin/www.gentoo.org/scripts/cvs-repo-update.sh +++ b/admin/www.gentoo.org/scripts/cvs-repo-update.sh @@ -11,16 +11,20 @@ source ~/.bashrc WORKDIR=/home/httpd +RSYNC="RSYNC_RSH=ssh rsync" # create the directory if this is the first time this has run mkdir -p ${WORKDIR}/cvsroot # grab a recent copy of the cvs modules for viewcvs -RSYNC_RSH=ssh rsync -a cvs.gentoo.org:/home/cvsroot/gentoo \ +${RSYNC} -a cvs.gentoo.org:/home/cvsroot/gentoo \ --exclude /home/cvsroot/gentoo/admin/ ${WORKDIR}/cvsroot/gentoo -RSYNC_RSH=ssh rsync -a cvs.gentoo.org:/home/cvsroot/gentoo-x86 \ +${RSYNC} -a cvs.gentoo.org:/home/cvsroot/gentoo-x86 \ ${WORKDIR}/cvsroot/gentoo-x86 +${RSYNC} -a cvs.gentoo.org:/home/cvsroot/gentoo-src \ +${WORKDIR}/cvsroot/gentoo-src + #done |