From: Joey Hess Date: Sat, 23 Oct 2010 20:31:58 +0000 (-0400) Subject: bugfix X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=62a0f2f3d65aa86996f11a01cadb88380ba3d4e4;p=ikiwiki.git bugfix --- diff --git a/IkiWiki/Plugin/git.pm b/IkiWiki/Plugin/git.pm index 892b711d8..f8e16859b 100644 --- a/IkiWiki/Plugin/git.pm +++ b/IkiWiki/Plugin/git.pm @@ -848,8 +848,9 @@ sub rcs_preprevert ($) { # in order to see all changes. my ($subdir, $rootdir) = git_find_root(); $git_dir=$rootdir; - return git_parse_changes(git_commit_info($sha1, 1)); + my @ret=git_parse_changes(git_commit_info($sha1, 1)); $git_dir=undef; + return @ret; } sub rcs_revert ($) {