diff --git a/std_hilite/cron_spec_highlight b/std_hilite/cron_spec_highlight index a67c0b5..994a448 100755 --- a/std_hilite/cron_spec_highlight +++ b/std_hilite/cron_spec_highlight @@ -20,9 +20,9 @@ INTRO my $status; -say "\n--Running 'svn update'"; -$status = system('cd ../../..; svn update'); -die "Could not svn update pugs\n" if $status != 0; +say "\n--Running 'git pull' for std"; +$status = system('cd ..; git pull'); +die "Could not git pull for std\n" if $status != 0; say "\n--Running 'make clean all' for STD.pm"; $status = system('cd ..; make clean all'); @@ -44,6 +44,6 @@ PATH=/bin:/usr/bin:/usr/local/bin LANG=en_US.UTF-8 # m h dom mon dow command -1 */3 * * * (cd ~/pugs/src/perl6; ./cron_spec_highlight 2>&1 | tee html/log.txt) +1 */5 * * * (cd ~/std/std_hilite; ./cron_spec_highlight 2>&1 | tee html/log.txt) =cut