summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build_content.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build_content.sh b/scripts/build_content.sh
index e627edc..154a93f 100755
--- a/scripts/build_content.sh
+++ b/scripts/build_content.sh
@@ -186,6 +186,7 @@ fi
186if [ -z "$1" ]; then 186if [ -z "$1" ]; then
187 find "$CONTENT_DIR" \ 187 find "$CONTENT_DIR" \
188 -type f \ 188 -type f \
189 ! -name ".*" \
189 $mdfilter \ 190 $mdfilter \
190 | while read file_in 191 | while read file_in
191 do 192 do
@@ -195,6 +196,7 @@ elif [ "$1" = "all_md" ]; then
195 find "$CONTENT_DIR" \ 196 find "$CONTENT_DIR" \
196 -type f \ 197 -type f \
197 -name "*.md" \ 198 -name "*.md" \
199 ! -name ".*" \
198 $mdfilter \ 200 $mdfilter \
199 | while read file_in 201 | while read file_in
200 do 202 do