diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-04 16:01:21 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-04 16:01:21 -0400 |
commit | 49ef98505aa7ada6b1de81860c7e69b600b6c953 (patch) | |
tree | 0b2636e3fd35af2fe128d3e786dd31d493b99a33 /IkiWiki/Plugin | |
parent | 252e3f600670040b2a184e5ca0581db720096a80 (diff) | |
download | ikiwiki-49ef98505aa7ada6b1de81860c7e69b600b6c953.tar ikiwiki-49ef98505aa7ada6b1de81860c7e69b600b6c953.tar.gz |
fix bug if git_root is "0"
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/git.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/git.pm b/IkiWiki/Plugin/git.pm index 457975d95..b6ed61428 100644 --- a/IkiWiki/Plugin/git.pm +++ b/IkiWiki/Plugin/git.pm @@ -729,7 +729,7 @@ sub git_find_root { # Determine if it is in a subdirectory by examining the srcdir, # and its parents, looking for the .git directory. - return $git_root if $git_root; + return $git_root if defined $git_root; my $subdir=""; my $dir=$config{srcdir}; |