From b91f8c354b60f9db22d4ad65a1e6f72b13c8b693 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 20 Aug 2024 11:08:30 -0400 Subject: CI add pandoc (and bug fixes) (#35) * Fix pandoc command regression * Add space between destination and input * Add pandoc dependency * Dump output of indexed files --- src/stasis_indexer.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/stasis_indexer.c b/src/stasis_indexer.c index 2a3c044..4f57a86 100644 --- a/src/stasis_indexer.c +++ b/src/stasis_indexer.c @@ -272,6 +272,7 @@ int indexer_make_website(struct Delivery *ctx) { strcat(cmd, "--standalone "); strcat(cmd, "-o "); strcat(cmd, fullpath_dest); + strcat(cmd, " "); strcat(cmd, fullpath_src); if (globals.verbose) { puts(cmd); -- cgit