From 727d39b92a90619027badbd4fd28d37a51c25d16 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 16 Nov 2013 18:56:39 -0400 Subject: [PATCH] fix eq --- IkiWiki/Plugin/git.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IkiWiki/Plugin/git.pm b/IkiWiki/Plugin/git.pm index 1dbf00d55..f2b5f9ef9 100644 --- a/IkiWiki/Plugin/git.pm +++ b/IkiWiki/Plugin/git.pm @@ -481,7 +481,7 @@ sub rcs_find_changes ($) { $newrev=$ci->{sha1}; foreach my $i (@{$ci->{details}}) { my $file=$i->{file}; - if ($i->{sha1_to} == $nullsha) { + if ($i->{sha1_to} eq $nullsha) { delete $changed{$file}; $deleted{$file}=1; } -- 2.39.2