diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-08-20 22:33:49 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-08-21 09:03:44 -0400 |
commit | 55cc6b24dcf606db9bd3102344ec0a9aa966189d (patch) | |
tree | c3d496d240d1f8bd4ab71f4c2a19c3f55e7635c2 /example/haunt.scm | |
parent | 3c3a5ca21345b8df791486027ee367130ed45374 (diff) |
Add publishing interface with built-in support for rsync.
Diffstat (limited to 'example/haunt.scm')
-rw-r--r-- | example/haunt.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/example/haunt.scm b/example/haunt.scm index 536e64c..07f7601 100644 --- a/example/haunt.scm +++ b/example/haunt.scm @@ -3,6 +3,7 @@ (haunt builder atom) (haunt builder assets) (haunt builder rss) + (haunt publisher rsync) (haunt reader) (haunt reader skribe) (haunt reader texinfo) @@ -19,4 +20,5 @@ (atom-feed) (atom-feeds-by-tag) (rss-feed) - (static-directory "images"))) + (static-directory "images")) + #:publishers (list (rsync-publisher #:destination "/tmp/haunt-example"))) |