From d7b2516b88e381fe4bfc70c6685b7c9038791f2e Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 9 Jun 2024 14:02:35 +0100 Subject: Fix: check if content folder exists --- bin/compile-book | 15 +++++++++------ bin/compile-notes | 11 +++++++---- 2 files changed, 16 insertions(+), 10 deletions(-) (limited to 'bin') diff --git a/bin/compile-book b/bin/compile-book index 930e673..2907e98 100755 --- a/bin/compile-book +++ b/bin/compile-book @@ -8,6 +8,7 @@ BASENAME="`basename $0 | sed -e 's/\(.\)/\U\1/'`" DIRNAME="`dirname $0`" BASEDIR="$DIRNAME/.." STRUCTURE="structure/book" +CONTENT="content/sections" OUTPUT="${1:-book}" REVISION="$2" DATE="$3" @@ -37,12 +38,14 @@ for file in $BASEDIR/$STRUCTURE/00*.md; do done # Sections -find content/sections -type f | grep '\.md$' | sort | while read file; do - cat $file >> $OUTPUT.md - echo "" >> $OUTPUT.md - cat $BASEDIR/templates/book/references.md >> $OUTPUT.md - echo "" >> $OUTPUT.md -done +if [ -d "$CONTENT" ]; then + find $CONTENT -type f | grep '\.md$' | sort | while read file; do + cat $file >> $OUTPUT.md + echo "" >> $OUTPUT.md + cat $BASEDIR/templates/book/references.md >> $OUTPUT.md + echo "" >> $OUTPUT.md + done +fi # Footers for file in $BASEDIR/$STRUCTURE/99*.md; do diff --git a/bin/compile-notes b/bin/compile-notes index 02a9420..24c98ea 100755 --- a/bin/compile-notes +++ b/bin/compile-notes @@ -8,6 +8,7 @@ BASENAME="`basename $0 | sed -e 's/\(.\)/\U\1/'`" DIRNAME="`dirname $0`" BASEDIR="$DIRNAME/.." STRUCTURE="structure/notes" +CONTENT="content/notes" OUTPUT="${1:-notes}" REVISION="$2" DATE="$3" @@ -37,10 +38,12 @@ for file in $BASEDIR/$STRUCTURE/00*.md; do done # Content -find content/notes -type f | grep '\.md$' | sort | while read file; do - cat $file >> $OUTPUT.md - echo "" >> $OUTPUT.md -done +if [ -d "$CONTENT" ]; then + find $CONTENT -type f | grep '\.md$' | sort | while read file; do + cat $file >> $OUTPUT.md + echo "" >> $OUTPUT.md + done +fi # Bibliography section cat $BASEDIR/templates/notes/bibliography.md >> $OUTPUT.md -- cgit v1.2.3