http://72.14.253.104/search?q=cache:Q9K1vv_GkOsJ:sourceforge.net/mailarchive/forum.php%3Fforum_id%3D8052%26max_rows%3D25%26style%3Dnested%26viewmonth%3D200209+tortoisecvs+auto+updater&hl=en&ct=clnk&cd=4&gl=us
I modified the script a little bit so that it would work with moodle CVS update, but somehow it won't work. Here is my script (.bat file):
--
@echo off
c:
cd \amp\moodle\moodle18\
set CVS_RSH=c:\progra~1\tortoisecvs\tortoiseplink.exe -l username -pw XXXXXX
set CVSROOT=:ext:username@cvs.moodle.org:/cvsroot/moodle
echo Updating from %CVSROOT%
"c:\program files\tortoisecvs\cvs.exe" -z9 update -d -C -A
--
I also tried to change the last line to:
"c:\program files\tortoisecvs\cvs.exe" update -d moodle
However this would crash CVSNT. Attached please fine a screenshot.
By the way as this is a home development machine so I don't really care about security, so didn't want to use RSA keys here..(I know I probably should...)
Have anyone here ever setup TortoiseCVS to do automatic nightly CVS update correctly? What did I do wrong here? Thanks!