mynode/make_rootfs_auto.sh
2020-10-29 17:22:15 -05:00

8 lines
322 B
Bash
Executable File

#!/bin/bash
rm -rf $(dirname $0)/out/rootfs_*
# Did not work well on Linux.... works on OSX :-/
#fswatch -o $(dirname $0)/rootfs $(dirname $0)/CHANGELOG | (while read; do $(dirname $0)/make_rootfs.sh; echo "Update rootfs!"; done)
while true; do find $(dirname $0)/rootfs/ | entr -d -s $(dirname $0)/make_rootfs.sh; done