mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-11 16:09:16 +00:00
7 lines
179 B
Bash
Executable File
7 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -rf $(dirname $0)/out/rootfs_*
|
|
|
|
fswatch $(dirname $0)/rootfs $(dirname $0)/CHANGELOG | (while read; do $(dirname $0)/make_rootfs.sh; echo "Update rootfs!"; done)
|
|
|