6 lines
108 B
Bash
Executable file
6 lines
108 B
Bash
Executable file
#!/bin/bash
|
|
while inotifywait -r -q -e close_write "../autoload" "."
|
|
do
|
|
./run_tests.sh
|
|
sleep 1
|
|
done
|