Re: Using svn with cron?

2011-03-07 Thread bimininavels
Thats what I've been doing. The entire script is >> to a logfile. #!/usr/bin/perl print "To run svn commit\n"; $thetime=time; system "cd ~/docs; /usr/bin/svn commit --message '$thetime' \n"; system "cd ~/docs; /usr/bin/svn info \n"; I see the "svn info" in the logfile, but I see no r

Using SVN with cron?

2011-03-06 Thread bimininavels
I've been struggling all morning with what should be a very simple problem. I would like to commit and update a svn repository daily using cron. I've encapsulated my svn calls into a perl script, which runs the following #!/usr/bin/perl print "To run svn commit\n"; $thetime=time; system "

Re: Using svn with cron?

2011-03-06 Thread bimininavels
Where is svn's stderr?

Using svn with cron?

2011-03-06 Thread bimininavels
I've been struggling all morning with what should be a very simple problem. I would like to commit and update a svn repository daily using cron. I've encapsulated my svn calls into a perl script, which runs the following #!/usr/bin/perl print "To run svn commit\n"; $thetime=time; system "