1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-10-30 23:57:43 +02:00

remove verbose flag from go test

This commit is contained in:
Jesse Duffield
2019-04-07 13:08:54 +10:00
parent 60e33f5d8c
commit 878a15aff4

View File

@@ -10,7 +10,7 @@ fi
for d in $( find ./* -maxdepth 10 ! -path "./vendor*" ! -path "./.git*" ! -path "./scripts*" -type d); do
if ls $d/*.go &> /dev/null; then
args="-v -race -coverprofile=profile.out -covermode=atomic $d"
args="-race -coverprofile=profile.out -covermode=atomic $d"
if [ "$use_go_test" == true ]; then
gotest $args
else