diff options
author | intrigeri <intrigeri@boum.org> | 2010-06-29 15:53:51 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-06-29 15:53:51 +0200 |
commit | 1786b106a9c7f448136ff47d9b6dd26d48a5dd2e (patch) | |
tree | edfeed77be4a56ed06095bd67eb7cbc05a1a1eca /t/git.t | |
parent | b225fdc44d4b3d2853db622d59aed7b59788aeec (diff) | |
parent | be60d261e6cbee094e4df74e1bb24c8ad3dc393d (diff) |
Merge remote branch 'upstream/master' into prv/po
Conflicts:
doc/plugins/po.mdwn
Diffstat (limited to 't/git.t')
-rwxr-xr-x | t/git.t | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -7,11 +7,14 @@ BEGIN { $dir="/tmp/ikiwiki-test-git.$$"; my $git=`which git`; chomp $git; - if (! -x $git || ! mkdir($dir)) { + if (! -x $git) { eval q{ - use Test::More skip_all => "git not available or could not make test dir" + use Test::More skip_all => "git not available" } } + if (! mkdir($dir)) { + die $@; + } } use Test::More tests => 18; |