#!/bin/sh

set -e

filewatcher \
    -L 6 \
    -x '**/*.swp' \
    -x .git \
    -x build \
    -x .idea \
    -- \
    sh -c 'go test -timeout 10s -v ./${dir} || ( echo; echo; exit 1 )'
