summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--content/index.md2
-rwxr-xr-xscripts/watch_content.sh9
-rwxr-xr-xscripts/watch_sass.sh9
3 files changed, 13 insertions, 7 deletions
diff --git a/content/index.md b/content/index.md
index 14b1337..f595457 100644
--- a/content/index.md
+++ b/content/index.md
@@ -3,7 +3,7 @@ title: "Index"
3ismain: true 3ismain: true
4--- 4---
5 5
6# Volpeon's den 6# Volpeon's Den
7 7
8Welcome to my website! I'm Volpeon and here's an [inline link](#). 8Welcome to my website! I'm Volpeon and here's an [inline link](#).
9 9
diff --git a/scripts/watch_content.sh b/scripts/watch_content.sh
index 59d60a4..d2578e1 100755
--- a/scripts/watch_content.sh
+++ b/scripts/watch_content.sh
@@ -1,5 +1,8 @@
1#!/bin/bash 1#!/bin/bash
2 2
3while inotifywait -r -e close_write content; do 3inotifywait -m -e create -e close_write --format "%f" content \
4 scripts/build_content.sh 4 | while read FILENAME
5done 5 do
6 printf "Change detected: %s\n" "$FILENAME"
7 scripts/build_content.sh
8 done
diff --git a/scripts/watch_sass.sh b/scripts/watch_sass.sh
index 69605dc..e7b2952 100755
--- a/scripts/watch_sass.sh
+++ b/scripts/watch_sass.sh
@@ -1,5 +1,8 @@
1#!/bin/bash 1#!/bin/bash
2 2
3while inotifywait -r -e close_write assets; do 3inotifywait -m -e create -e close_write --format "%f" assets \
4 scripts/build_sass.sh 4 | while read FILENAME
5done 5 do
6 printf "Change detected: %s\n" "$FILENAME"
7 scripts/build_sass.sh
8 done