Skip to content

Commit 66abe2e

Browse files
committed
gocoverage.sh: skip .
This is an attempt to get Travis working again.
1 parent b3b6210 commit 66abe2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gocoverage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ for dir in $(find . -maxdepth 10 -not -path './.git*' -not -path '*/_*' -type d)
1313
do
1414
if ls $dir/*.go &> /dev/null; then
1515
# echo $dir
16-
if [[ $dir != "./tests/vm" ]]
16+
if [[ $dir != "./tests/vm" && $dir != "." ]]
1717
then
1818
go test -covermode=count -coverprofile=$dir/profile.tmp $dir
1919
fi

0 commit comments

Comments
 (0)