From: Amitai Schlair <schmonz@magnetic-babysitter.(none)>
Date: Sun, 30 Aug 2009 06:00:49 +0000 (-0400)
Subject: Only examine argv if the VCS is cvs.
X-Git-Tag: 3.14159265~80^2~5
X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/5e94e973eeb4ba75d9c37bd801278f686f0977c3

Only examine argv if the VCS is cvs.
---

diff --git a/IkiWiki/Wrapper.pm b/IkiWiki/Wrapper.pm
index 87c2ffc89..cc2223d7a 100644
--- a/IkiWiki/Wrapper.pm
+++ b/IkiWiki/Wrapper.pm
@@ -45,8 +45,8 @@ EOF
 	}
 
 	my $check_cvs_add_dir="";
-	# XXX conditionalize on $config{rcs} eq 'cvs'
-	$check_cvs_add_dir=<<"EOF";
+	if ($config{rcs} eq 'cvs') {
+		$check_cvs_add_dir=<<"EOF";
 	{
 		int j;
 		for (j = 1; j < argc; j++)
@@ -54,6 +54,7 @@ EOF
 				exit(0);
 	}
 EOF
+	}
 
 	my $check_commit_hook="";
 	my $pre_exec="";