mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-12-26 14:34:00 +00:00
5 lines
120 B
Bash
5 lines
120 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
fswatch $(dirname $0)/rootfs | (while read; do $(dirname $0)/make_rootfs.sh; echo "Update rootfs!"; done)
|
||
|
|