5 lines
174 B
Bash
Executable File
5 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
cd "$(git rev-parse --show-toplevel)"
|
|
find . -not \( -path './.git' -prune \) -not \( -path './build' -prune \) \
|
|
| entr -cs 'scripts/build.sh && scripts/test.sh'
|