7 lines
184 B
Bash
Executable file
7 lines
184 B
Bash
Executable file
#!/usr/bin/env bash
|
|
(
|
|
trap 'kill 0' SIGINT
|
|
cargo watch -w "src" -x check -s 'touch .trigger' &
|
|
cargo watch --no-vcs-ignores -w .trigger -x "run -- --config-dir test-config watch"
|
|
)
|