diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-02 12:39:58 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-02 12:39:58 -0400 |
commit | 7e4a0c2930afee2249ea5f3eac882460759bc2ae (patch) | |
tree | 02dfd243866c9921a681244516767f8f21f2b179 /IkiWiki/Plugin | |
parent | 9d3467cf4ac8773589a90a9b28e1e726dc417e6d (diff) |
darcs: Fix multiple issues preventing rcs_diff from working.
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/darcs.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/darcs.pm b/IkiWiki/Plugin/darcs.pm index cd4fcd0ff..1313041e7 100644 --- a/IkiWiki/Plugin/darcs.pm +++ b/IkiWiki/Plugin/darcs.pm @@ -377,7 +377,8 @@ sub rcs_diff ($;$) { my $rev=shift; my $maxlines=shift; my @lines; - foreach my $line (silentsystem("darcs", "diff", "--match", "hash ".$rev)) { + my $repodir=$config{srcdir}; + foreach my $line (`darcs diff --repodir $repodir --match 'hash $rev'`) { if (@lines || $line=~/^diff/) { last if defined $maxlines && @lines == $maxlines; push @lines, $line."\n"; |