diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-20 11:02:16 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-20 11:02:16 -0400 |
commit | f4edf7934cc0048afd5f1474421bab795a252c54 (patch) | |
tree | a98eab29f00234c499bf338632699298846a4477 | |
parent | 8cc16bef9d4b8d7d9e36cd135fd6a78a8e8a38cf (diff) | |
download | stasis-f4edf7934cc0048afd5f1474421bab795a252c54.tar.gz |
Fix pandoc command regression
* Add space between destination and input
-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); |