mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-15 07:56:11 +08:00
8 lines
127 B
Bash
Executable File
8 lines
127 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
while true
|
|
do
|
|
find lib/ -name '*.dart' | \
|
|
entr -d -p kill -USR1 $(cat /tmp/flutter.pid)
|
|
done
|