From 5bdcd4d57b2ca5dbf6e3d46a693cec4d27512020 Mon Sep 17 00:00:00 2001 From: Amitai Schlair Date: Sat, 22 Aug 2009 02:22:36 -0400 Subject: [PATCH] Oops, use the more recent (and less brittle) directory test. --- IkiWiki/Plugin/cvs.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () { -- 2.26.2