This repository was archived by the owner on Nov 7, 2022. It is now read-only.
Commit e97edac
Fix "vet" target in makefile (#558)
Previously "vet" target was coded to fail if govet produced any output,
which is not a correct assumption. Govet can produce output even in
case of success [1]. The correct way to know if govet is successful is
to rely on exit code, which is exactly what is done now after this change.
[1] - see for example https://travis-ci.org/census-instrumentation/opencensus-service/builds/5365501871 parent 2157469 commit e97edac
1 file changed
+2
-8
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
76 | | - | |
77 | | - | |
78 | | - | |
79 | | - | |
80 | | - | |
81 | | - | |
82 | | - | |
83 | | - | |
| 76 | + | |
| 77 | + | |
84 | 78 | | |
85 | 79 | | |
86 | 80 | | |
| |||
0 commit comments