Browse Source

Adde watch script for sass/coffeescript files

Taddeus Kroes 12 years ago
parent
commit
1b801eefa9
1 changed files with 11 additions and 0 deletions
  1. 11 0
      watch.sh

+ 11 - 0
watch.sh

@@ -0,0 +1,11 @@
+#!/usr/bin/env sh
+
+hash inotifywait || (echo "Install inotify-tools first"; exit 1)
+
+make
+
+while true; do
+    inotifywait --quiet --event attrib,modify *.sass *.coffee
+    sleep 0.05s
+    make
+done