diff options
author | Joey Hess <joey@kitenet.net> | 2010-11-29 12:01:50 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-11-29 12:01:50 -0400 |
commit | 78a22e2eb2d3b963c48067367f6ded5da061eb81 (patch) | |
tree | 50e2b62e16a55c6cf9f7a1013e8db31ccbd7b805 /IkiWiki/Plugin | |
parent | 47b4682ba7e8d2a0a5da87adbfb4adc3f857370f (diff) |
git: Fix temp file location.
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 3fa29b22f..39d88d002 100644 --- a/IkiWiki/Plugin/git.pm +++ b/IkiWiki/Plugin/git.pm @@ -797,7 +797,7 @@ sub git_parse_changes { eval q{use File::Temp}; die $@ if $@; my $fh; - ($fh, $path)=File::Temp::tempfile("XXXXXXXXXX", UNLINK => 1); + ($fh, $path)=File::Temp::tempfile(undef, UNLINK => 1); my $cmd = "cd $git_dir && ". "git show $detail->{sha1_to} > '$path'"; if (system($cmd) != 0) { |