From a1adb2e6c8376e361935e77a3e7ad4a0180729fa Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Thu, 18 Jan 2024 19:49:11 +0100 Subject: Create initial build object. The code is more complex than necessary, because of my insistence of creating an all-object oriented framework. --- www/build-site.el | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 www/build-site.el (limited to 'www/build-site.el') diff --git a/www/build-site.el b/www/build-site.el new file mode 100644 index 0000000..cac2525 --- /dev/null +++ b/www/build-site.el @@ -0,0 +1,10 @@ +;; -*- lexical-binding: t; -*- + +( require 'ox-publish ) + +( setq build-publication + ( let ( ( report-success "Build complete!" ) ) + ( lambda () + ( message report-success ) ) ) ) + +( funcall build-publication ) -- cgit v1.2.3