From 536ff758c77cefe8d8c5c3ccdba67087128684ef Mon Sep 17 00:00:00 2001 From: Shulhan Date: Wed, 22 Jan 2025 21:33:46 +0700 Subject: make: do not ignore error when running "go vet" --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1f81abe9..af994b5a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -## Copyright 2018, Shulhan . All rights reserved. -## Use of this source code is governed by a BSD-style -## license that can be found in the LICENSE file. +## SPDX-FileCopyrightText: 2018 M. Shulhan +## +## SPDX-License-Identifier: BSD-3-Clause COVER_OUT:=cover.out COVER_HTML:=cover.html @@ -38,7 +38,7 @@ test.prof: lint: -fieldalignment ./... -shadow ./... - -go vet ./... + go vet ./... $(CIIGO): go install git.sr.ht/~shulhan/ciigo/cmd/ciigo -- cgit v1.3