summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2020-12-26 12:11:45 +0100
committerVolpeon <git@volpeon.ink>2020-12-26 12:11:45 +0100
commit17e7802f1eef43b6d0ae77fdf646d7e6fe8ccc37 (patch)
treef8a112286787c0b2e4f298519d2a56552c70a8ef /scripts
parentImproved build script output (diff)
downloadvolpeon.ink-17e7802f1eef43b6d0ae77fdf646d7e6fe8ccc37.tar.gz
volpeon.ink-17e7802f1eef43b6d0ae77fdf646d7e6fe8ccc37.tar.bz2
volpeon.ink-17e7802f1eef43b6d0ae77fdf646d7e6fe8ccc37.zip
Improved SCSS structure, keep less glyphs in fonts
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build_content.sh2
-rwxr-xr-xscripts/watch_metadata.sh2
-rwxr-xr-xscripts/watch_templates.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build_content.sh b/scripts/build_content.sh
index 8acdcdf..6b50cd8 100755
--- a/scripts/build_content.sh
+++ b/scripts/build_content.sh
@@ -35,7 +35,7 @@ if [ -z "$1" ]; then
35 do 35 do
36 handle "$FILE" 36 handle "$FILE"
37 done 37 done
38elif [ "$1" = "md" ]; then 38elif [ "$1" = "all_md" ]; then
39 find content/ \ 39 find content/ \
40 -type f \ 40 -type f \
41 -name "*.md" \ 41 -name "*.md" \
diff --git a/scripts/watch_metadata.sh b/scripts/watch_metadata.sh
index 4323c90..41457e1 100755
--- a/scripts/watch_metadata.sh
+++ b/scripts/watch_metadata.sh
@@ -3,5 +3,5 @@
3inotifywait -qrme close_write,delete,move --format "%w%f" metadata \ 3inotifywait -qrme close_write,delete,move --format "%w%f" metadata \
4 | while read FILENAME 4 | while read FILENAME
5 do 5 do
6 scripts/build_content.sh "md" 6 scripts/build_content.sh "all_md"
7 done 7 done
diff --git a/scripts/watch_templates.sh b/scripts/watch_templates.sh
index 9c7e787..3482ac6 100755
--- a/scripts/watch_templates.sh
+++ b/scripts/watch_templates.sh
@@ -3,5 +3,5 @@
3inotifywait -qrme close_write,delete,move --format "%w%f" templates \ 3inotifywait -qrme close_write,delete,move --format "%w%f" templates \
4 | while read FILENAME 4 | while read FILENAME
5 do 5 do
6 scripts/build_content.sh "md" 6 scripts/build_content.sh "all_md"
7 done 7 done