support darcs in setup automator

use a consistent name for the ikiwiki wrapper file
master
Joey Hess 2009-04-04 18:17:38 -04:00
parent 3c17adea55
commit a9c0d7e288
3 changed files with 5 additions and 2 deletions

View File

@ -58,6 +58,9 @@ sub import (@) {
elsif ($config{rcs} eq 'monotone') {
$config{mtn_wrapper}=$config{srcdir}."_MTN/ikiwiki-netsync-hook";
}
elsif ($config{rcs} eq 'darcs') {
$config{darcs_wrapper}=$config{repository}."_darcs/ikiwiki-wrapper";
}
elsif ($config{rcs} eq 'bzr') {
# TODO
}

View File

@ -9,7 +9,7 @@ automatically commits edited pages, and uses the Darcs history to generate the
Example for a `_darcs/prefs/defaults` file in `$SRCDIR`:
apply posthook /path/to/repository/_darcs/ikiwrapper
apply posthook /path/to/repository/_darcs/ikiwiki-wrapper
apply run-posthook
See also [[todo/darcs|todo/darcs]]

View File

@ -143,7 +143,7 @@ darcs)
# set up master repo's apply hook and tell user to adjust it if desired
darcsdefaults="$repository/_darcs/prefs/defaults"
echo "Preconfiguring apply hook in $darcsdefaults - adjust as desired!"
echo "apply posthook $repository/_darcs/ikiwrapper" >> "$darcsdefaults"
echo "apply posthook $repository/_darcs/ikiwiki-wrapper" >> "$darcsdefaults"
echo "apply run-posthook" >> "$darcsdefaults"
;;
*)