From: Amitai Schlair Date: Sat, 22 Aug 2009 06:22:36 +0000 (-0400) Subject: Oops, use the more recent (and less brittle) directory test. X-Git-Tag: 3.14159265~61^2~27 X-Git-Url: http://git.tremily.us/?p=ikiwiki.git;a=commitdiff_plain;h=5bdcd4d57b2ca5dbf6e3d46a693cec4d27512020 Oops, use the more recent (and less brittle) directory test. --- diff --git a/IkiWiki/Plugin/cvs.pm b/IkiWiki/Plugin/cvs.pm index 076af26f3..ac188d4a1 100644 --- a/IkiWiki/Plugin/cvs.pm +++ b/IkiWiki/Plugin/cvs.pm @@ -25,7 +25,7 @@ sub getopt () { # "cvs add dir" acts immediately on the repository. # post-commit gets confused by this and doesn't need to act on it. # If that's why we're here, terminate the process. - @ARGV == 3 && $ARGV[1] eq "NONE" && $ARGV[2] eq "NONE" && exit 0; + ((grep /New directory/, @ARGV) > 0) && exit 0; } sub checkconfig () {