diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-12-02 17:22:42 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-12-02 17:22:42 -0500 |
commit | 3fd8a7f91ccf0f9628a345d7ae08e8bba508410c (patch) | |
tree | 1bb93bd60bb7caa25ee8138812f3fe0d74d660a6 /IkiWiki | |
parent | 9fdd9af2db2bd21e543fa0f5f4bfa85b56b8dd5c (diff) |
cvs: Add missing bit to Automator.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Setup/Automator.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/IkiWiki/Setup/Automator.pm b/IkiWiki/Setup/Automator.pm index d1594d7ea..7af93e73c 100644 --- a/IkiWiki/Setup/Automator.pm +++ b/IkiWiki/Setup/Automator.pm @@ -72,6 +72,9 @@ sub import (@) { elsif ($config{rcs} eq 'mercurial') { # TODO } + elsif ($config{rcs} eq 'cvs') { + $config{cvs_wrapper}=$config{repository}."/CVSROOT/post-commit"; + } else { error sprintf(gettext("unsupported revision control system %s"), $config{rcs}); |