good morning!!!!

Skip to content
Snippets Groups Projects
Commit ae3e9d48 authored by Taylor Gerring's avatar Taylor Gerring
Browse files

Don't reference by $GOROOT

parent cad53fa1
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ if ls $dir/*.go &> /dev/null; then
# echo $dir
if [[ $dir != "./tests/vm" ]]
then
$GOROOT/bin/go test -covermode=count -coverprofile=$dir/profile.tmp $dir
go test -covermode=count -coverprofile=$dir/profile.tmp $dir
fi
if [ -f $dir/profile.tmp ]
then
......@@ -25,5 +25,5 @@ if ls $dir/*.go &> /dev/null; then
fi
done
$GOROOT/bin/go tool cover -func profile.cov
go tool cover -func profile.cov
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment