File tree Expand file tree Collapse file tree 1 file changed +3
-18
lines changed
Expand file tree Collapse file tree 1 file changed +3
-18
lines changed Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15- .PHONY : all clean test
16-
17- ifdef V
18- TESTARGS = -v
19- else
20- TESTARGS =
21- endif
22-
15+ # No individual commands at the moment, just packages.
16+ CMDS =
2317all :
2418 go build ` go list ./... | grep -v ' vendor' `
2519
26- clean :
27- true
28-
29- test :
30- go test ` go list ./... | grep -v ^vendor` $(TESTARGS )
31- go vet ` go list ./... | grep -v ^vendor`
32- diff=" $$ (gofmt -d $$ (find . -name '*.go' | grep -v ^./vendor))" && \
33- ( [ -z " $$ diff" ] || ( \
34- echo " \nvvvvvv formatting errors, fix with patch -p1 vvvvvvvvvv\n$$ diff\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n" ; \
35- false ) )
20+ include release-tools/build.make
You can’t perform that action at this time.
0 commit comments