From 241a2e0993efc19c0318ca209e3d2b7702d19f52 Mon Sep 17 00:00:00 2001 From: Steve Clement Date: Tue, 27 Nov 2018 18:04:26 +0900 Subject: [PATCH] chg: [shell] Added vague indicators where we are at in the build process. new: [plugin] Added last-modified plugin and explicitly the search plugin (for debugging) --- book.json | 2 +- publish.sh | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/book.json b/book.json index 55fa514..19b0052 100644 --- a/book.json +++ b/book.json @@ -3,7 +3,7 @@ "description": "User guide of MISP Malware Information Sharing Platform, a Threat Sharing Platform.", "language": "en", "author": "MISP Contributors", - "plugins": ["autocover", "github", "toc", "anchors", "alerts", "advanced-emoji", "image-class"], + "plugins": ["autocover", "github", "toc", "anchors", "alerts", "advanced-emoji", "image-class", "last-modified", "search"], "links": { "sidebar": { "MISP @ GitHub": "https://github.com/MISP/MISP", "PDF Format": "https://www.circl.lu/doc/misp/book.pdf" }}, "pluginsConfig": { "github": { diff --git a/publish.sh b/publish.sh index d0055d5..56824aa 100755 --- a/publish.sh +++ b/publish.sh @@ -1,8 +1,13 @@ #!/bin/bash +echo "1/4 html" gitbook build +echo "2/4 pdf" gitbook pdf +echo "3/4 epub" gitbook epub +echo "4/4 mobi" gitbook mobi +echo "Done" mv book.pdf _book mv book.epub _book mv book.mobi _book