summaryrefslogtreecommitdiffstats
path: root/scripts/watch_sass.sh
blob: d451135329268d0f5f960ce9c837f5dd2b79b2ba (plain) (blame)
1
2
3
4
5
6
7
#!/bin/bash

inotifywait -qrme close_write,delete,move --format "%w%f" assets \
    | while read file
        do
            scripts/build_sass.sh
        done