We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9acc840 + 23d6e35 commit 8ee83deCopy full SHA for 8ee83de
2 files changed
Makefile
@@ -31,7 +31,7 @@ test:
31
32
.PHONY: lint
33
lint:
34
- $(GOMODULECMD) tool vet .
+ $(GOMODULECMD) vet ./...
35
36
37
IPXE_COMMIT_SHA := $(shell cat ipxe/IPXE_COMMIT_SHA)
@@ -53,4 +53,4 @@ ipxe:
53
mv -f ipxe/ipxe/src/bin/undionly.kpxe ipxe/ipxe/bin/undionly.kpxe
54
mv -f ipxe/ipxe/src/bin-x86_64-efi/ipxe.efi ipxe/ipxe/bin/ipxe-x86_64.efi
55
mv -f ipxe/ipxe/src/bin-i386-efi/ipxe.efi ipxe/ipxe/bin/ipxe-i386.efi
56
- (cd ipxe/ipxe/src && make veryclean)
+ (cd ipxe/ipxe/src && make veryclean)
dhcp4/conn_linux_test.go
@@ -12,6 +12,8 @@
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
+//go:build linux
16
+
17
package dhcp4
18
19
import (
0 commit comments