13 lines
188 B
Bash
Executable File
13 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
filewatcher \
|
|
-L 5 \
|
|
-x '**/*.swp' \
|
|
-x .git \
|
|
-x build \
|
|
-x .idea \
|
|
-- \
|
|
sh -c 'go test -timeout 10s -v ./${dir} || ( echo; echo; exit 1 )'
|