7 lines
161 B
Bash
Executable File
7 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
find . \
|
|
-not \( -path './build' -prune \) \
|
|
-not \( -path './.git' -prune \) \
|
|
-type f \
|
|
| entr -cs 'cmake --build build && build/maze-thing'
|