diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2024-08-20 11:08:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-20 11:08:30 -0400 |
commit | b91f8c354b60f9db22d4ad65a1e6f72b13c8b693 (patch) | |
tree | 0b979fa5abcfb4f5d9a4e558936f99f2f17b30a9 /src/stasis_indexer.c | |
parent | 8cc16bef9d4b8d7d9e36cd135fd6a78a8e8a38cf (diff) | |
download | stasis-b91f8c354b60f9db22d4ad65a1e6f72b13c8b693.tar.gz |
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
Diffstat (limited to 'src/stasis_indexer.c')
-rw-r--r-- | src/stasis_indexer.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); |