Skip to content

Commit

Permalink
[std_hilite] Use git instead of svn
Browse files Browse the repository at this point in the history
  • Loading branch information
azawawi committed Oct 12, 2010
1 parent 237d266 commit 263c207
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions std_hilite/cron_spec_highlight
Expand Up @@ -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');
Expand 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

0 comments on commit 263c207

Please sign in to comment.