diff options
author | Rob Holland <robh@gentoo.org> | 2003-07-14 09:26:50 +0000 |
---|---|---|
committer | Rob Holland <robh@gentoo.org> | 2003-07-14 09:26:50 +0000 |
commit | a7f96e2f19e5da5ef8ba9ce720a798e19f33fa57 (patch) | |
tree | 19b7b00e483e9c48a65ef524a28be250c35916fc /admin | |
parent | include gentoo-src in viewcvs (diff) | |
download | gentoo-a7f96e2f19e5da5ef8ba9ce720a798e19f33fa57.tar.gz gentoo-a7f96e2f19e5da5ef8ba9ce720a798e19f33fa57.tar.bz2 gentoo-a7f96e2f19e5da5ef8ba9ce720a798e19f33fa57.zip |
fix dodgy bash scripting ;)
Diffstat (limited to 'admin')
-rw-r--r-- | admin/www.gentoo.org/scripts/cvs-repo-update.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/www.gentoo.org/scripts/cvs-repo-update.sh b/admin/www.gentoo.org/scripts/cvs-repo-update.sh index 4c8b19975c..4e5218e864 100644 --- a/admin/www.gentoo.org/scripts/cvs-repo-update.sh +++ b/admin/www.gentoo.org/scripts/cvs-repo-update.sh @@ -11,20 +11,20 @@ source ~/.bashrc WORKDIR=/home/httpd -RSYNC="RSYNC_RSH=ssh rsync" +RSYNC_RSH=ssh # 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} -a cvs.gentoo.org:/home/cvsroot/gentoo \ +rsync -a cvs.gentoo.org:/home/cvsroot/gentoo \ --exclude /home/cvsroot/gentoo/admin/ ${WORKDIR}/cvsroot/gentoo -${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 \ +rsync -a cvs.gentoo.org:/home/cvsroot/gentoo-src \ ${WORKDIR}/cvsroot/gentoo-src #done |