Fix lint make target

Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
This commit is contained in:
Ulysses Souza 2021-09-20 12:55:16 +02:00 committed by Nicolas De loof
parent 3324429320
commit 3bf555cbd6
3 changed files with 3 additions and 1 deletions

View File

@ -34,7 +34,7 @@ RUN --mount=type=cache,target=/go/pkg/mod \
FROM base AS lint
ENV CGO_ENABLED=0
COPY --from=lint-base /usr/bin/golangci-lint /usr/bin/golangci-lint
COPY --from=golangci/golangci-lint /usr/bin/golangci-lint /usr/bin/golangci-lint
ARG BUILD_TAGS
ARG GIT_TAG
RUN --mount=target=. \

View File

@ -44,6 +44,7 @@ import (
// Command defines a compose CLI command as a func with args
type Command func(context.Context, []string) error
// CobraCommand defines a cobra command function
type CobraCommand func(context.Context, *cobra.Command, []string) error
// AdaptCmd adapt a CobraCommand func to cobra library

View File

@ -1,3 +1,4 @@
//go:build !windows
// +build !windows
/*