Skip to content

Commit

Permalink
Make sure the right copy of subversion is being used (on my Mac, no g…
Browse files Browse the repository at this point in the history
…uarantees elsewhere).
  • Loading branch information
iay committed Sep 4, 2013
1 parent 0891051 commit 7b724c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charting/fetch.pl
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

my $dest1 = "cache/$month.xml";
if (!-e $dest1) {
system("svn update $fn --quiet --revision \\{$month-01T00:00:00Z\\}");
system("/opt/local/bin/svn update $fn --quiet --revision \\{$month-01T00:00:00Z\\}");
system("cp $fn $dest1");
}

my $dest2 = "cache/$month.html";
if (!-e $dest2) {
system("svn update $fn2 --quiet --revision \\{$month-01T00:00:00Z\\}");
system("/opt/local/bin/svn update $fn2 --quiet --revision \\{$month-01T00:00:00Z\\}");
system("cp $fn2 $dest2");
}

Expand Down

0 comments on commit 7b724c2

Please sign in to comment.