Signed-off-by: Daniel Nephin <dnephin@docker.com>
Upstream-commit: 74c06a140b
Component: cli
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 )'
|