summaryrefslogtreecommitdiff
path: root/www/build-site.el
blob: 575bfe29637abe2c138c315779c82a90ad022368 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;; -*- lexical-binding: t; -*-

( require 'ox-publish )

( defun publication-builder ()
  ( let ( ( report-success "Build complete!" ) )
    ( lambda ()
      ( message report-success )
      ( ) ) ) )

( defvar publish ( publication-builder ) )

( funcall publish )