mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-15 07:56:11 +08:00

* Display a longer message when reloading - It's easier to see * Make flutter_run start the reload script and kill it automatically. This is always the behaviour I want when running an app via flutter run.
11 lines
168 B
Bash
Executable File
11 lines
168 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
kill -USR1 $(cat /tmp/flutter.pid)
|
|
echo "-----------------"
|
|
echo ""
|
|
echo " APP RELOADED "
|
|
echo ""
|
|
echo "-----------------"
|