mirror of https://github.com/docker/cli.git
13 lines
188 B
Plaintext
13 lines
188 B
Plaintext
|
#!/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 )'
|