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

inotifywait -qrme close_write,delete,move --format "%w%f" metadata \
    | while read FILENAME
        do
            scripts/build_content.sh
        done