Skip to content

Commit 0020c91

Browse files
committed
Makefile fixes
- enable freebsd tasks - use ORG_PREFIXES consistently Signed-off-by: apostasie <[email protected]>
1 parent a948780 commit 0020c91

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

mod/tigron/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,15 @@ lint-go-all:
7575
$(call title, $@)
7676
@cd $(MAKEFILE_DIR) \
7777
&& GOOS=darwin make lint-go \
78+
&& GOOS=freebsd make lint-go \
7879
&& GOOS=linux make lint-go \
7980
&& GOOS=windows make lint-go
8081
$(call footer, $@)
8182

8283
lint-imports:
8384
$(call title, $@)
8485
@cd $(MAKEFILE_DIR) \
85-
&& goimports-reviser -recursive -list-diff -set-exit-status -output stdout -company-prefixes "github.com/containerd" ./...
86+
&& goimports-reviser -recursive -list-diff -set-exit-status -output stdout -company-prefixes "$(ORG_PREFIXES)" ./...
8687
$(call footer, $@)
8788

8889
lint-yaml:
@@ -124,6 +125,7 @@ lint-licenses-all:
124125
$(call title, $@)
125126
@cd $(MAKEFILE_DIR) \
126127
&& GOOS=darwin make lint-licenses \
128+
&& GOOS=freebsd make lint-licenses \
127129
&& GOOS=linux make lint-licenses \
128130
&& GOOS=windows make lint-licenses
129131
$(call footer, $@)
@@ -141,6 +143,7 @@ fix-go-all:
141143
$(call title, $@)
142144
@cd $(MAKEFILE_DIR) \
143145
&& GOOS=darwin make fix-go \
146+
&& GOOS=freebsd make fix-go \
144147
&& GOOS=linux make fix-go \
145148
&& GOOS=windows make fix-go
146149
$(call footer, $@)

0 commit comments

Comments
 (0)