diff options
author | Volpeon <git@volpeon.ink> | 2020-12-26 12:11:45 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2020-12-26 12:11:45 +0100 |
commit | 17e7802f1eef43b6d0ae77fdf646d7e6fe8ccc37 (patch) | |
tree | f8a112286787c0b2e4f298519d2a56552c70a8ef /scripts | |
parent | Improved build script output (diff) | |
download | volpeon.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-x | scripts/build_content.sh | 2 | ||||
-rwxr-xr-x | scripts/watch_metadata.sh | 2 | ||||
-rwxr-xr-x | scripts/watch_templates.sh | 2 |
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 |
38 | elif [ "$1" = "md" ]; then | 38 | elif [ "$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 @@ | |||
3 | inotifywait -qrme close_write,delete,move --format "%w%f" metadata \ | 3 | inotifywait -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 @@ | |||
3 | inotifywait -qrme close_write,delete,move --format "%w%f" templates \ | 3 | inotifywait -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 |