Skip to content

Commit

Permalink
Merge pull request #184 from NeowayLabs/build-enzo
Browse files Browse the repository at this point in the history
enzo's ls doesn't support file listings
  • Loading branch information
i4ki authored Feb 26, 2017
2 parents 18a2148 + e3ef7aa commit b760322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ echo "mode: count" > coverage.txt
# Standard $GO tooling behavior is to ignore dirs with leading underscors
for dir in $(find . -maxdepth 10 -not -path './.git*' -not -path './Godeps*' -not -path './contrib*' -not -path './cmd/nash/vendor*' -not -path './research*' -type d);
do
if ls $dir/*.go &> /dev/null; then
if ls $dir | grep '.*\.go$' &> /dev/null; then
$GO test -v -race -covermode=atomic -coverprofile="$dir/profile.tmp" "$dir"
if [ -f $dir/profile.tmp ]
then
Expand Down

0 comments on commit b760322

Please sign in to comment.