Skip to content

Commit 8dccf25

Browse files
committed
fix verbose mode issue
1 parent 23e5b04 commit 8dccf25

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

internal/bazel_client.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,7 @@ func (b bazelClient) performBazelQuery(query string) ([]*Target, error) {
130130
}
131131

132132
var cmd []string
133-
if b.verbose {
134-
cmd = append(cmd, "--bazelrc=/dev/null")
135-
} else {
133+
if !b.verbose {
136134
cmd = append(cmd, "--noshow_progress")
137135
cmd = append(cmd, "--noshow_loading_progress")
138136
}

0 commit comments

Comments
 (0)