Changeset 23003 for src

Show
Ignore:
Timestamp:
11/14/08 00:41:37 (8 weeks ago)
Author:
azawawi
Message:

[STD_syntax_highlighter] cron job now properly svn up pugs directory
[STD_syntax_highlighter] 'make clean all' instead of only 'make'

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/perl6/cron_spec_highlight

    r22927 r23003  
    2222 
    2323say "\n--Running 'svn update'"; 
    24 $status = system('svn update');  
    25 die "Could not svn update\n" if $status != 0; 
     24$status = system('cd ../..; svn update');  
     25die "Could not svn update pugs\n" if $status != 0; 
    2626 
    27 say "\n--Running 'make' STD.pm"; 
    28 $status = system('make');  
     27say "\n--Running 'make clean all' for STD.pm"; 
     28$status = system('make clean all');  
    2929die "Could not make STD.pm\n" if $status != 0; 
    3030