Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ test:

.PHONY: lint
lint:
$(GOMODULECMD) tool vet .
$(GOMODULECMD) vet ./...


IPXE_COMMIT_SHA := $(shell cat ipxe/IPXE_COMMIT_SHA)
Expand All @@ -53,4 +53,4 @@ ipxe:
mv -f ipxe/ipxe/src/bin/undionly.kpxe ipxe/ipxe/bin/undionly.kpxe
mv -f ipxe/ipxe/src/bin-x86_64-efi/ipxe.efi ipxe/ipxe/bin/ipxe-x86_64.efi
mv -f ipxe/ipxe/src/bin-i386-efi/ipxe.efi ipxe/ipxe/bin/ipxe-i386.efi
(cd ipxe/ipxe/src && make veryclean)
(cd ipxe/ipxe/src && make veryclean)
1 change: 0 additions & 1 deletion dhcp4/conn_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
// limitations under the License.

//go:build linux
// +build linux

package dhcp4

Expand Down
2 changes: 1 addition & 1 deletion dhcp4/conn_linux_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//+build linux
//go:build linux

package dhcp4

Expand Down
2 changes: 1 addition & 1 deletion dhcp4/conn_unsupported.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//+build !linux
//go:build !linux

package dhcp4

Expand Down