diff options
| author | Shulhan <ms@kilabit.info> | 2025-01-22 21:33:46 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-01-22 21:34:16 +0700 |
| commit | 536ff758c77cefe8d8c5c3ccdba67087128684ef (patch) | |
| tree | 4e0f0576020a86f25b81cc3b5c1d2e34086ef17b | |
| parent | 360cd7bdc721c2aa968e2f6888db1c7e36538ae2 (diff) | |
| download | pakakeh.go-536ff758c77cefe8d8c5c3ccdba67087128684ef.tar.xz | |
make: do not ignore error when running "go vet"
| -rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ -## Copyright 2018, Shulhan <ms@kilabit.info>. 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 <ms@kilabit.info> +## +## 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 |
