diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-24 10:22:30 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-24 10:22:30 -0400 |
commit | 4f86d1d032f572147c835f7020869714ac6e1d31 (patch) | |
tree | a97b2c2243f0c702852c11f959c6e735be5118dd | |
parent | 07600eb0df0af099a1c055f0a6c88114f2e857bd (diff) | |
download | stasis-4f86d1d032f572147c835f7020869714ac6e1d31.tar.gz |
Add missing warning message
* User is informed when pandoc is not available for HTML page generation
-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 7cf0815..a2e3777 100644 --- a/src/stasis_indexer.c +++ b/src/stasis_indexer.c @@ -208,6 +208,7 @@ int indexer_make_website(struct Delivery *ctx) { }; if (!find_program("pandoc")) { + fprintf(stderr, "pandoc is not installed: unable to generate HTML indexes\n"); return 0; } |