Skip to content

Commit

Permalink
Fix a deprecation warning printed by Circle-CI
Browse files Browse the repository at this point in the history
Fix the following deprecation warning that appears in the Circle-CI
pipelines:

  go get: installing executables with 'go get' in module mode is deprecated.
          To adjust and download dependencies of the current module, use 'go get -d'.
          To install using requirements of the current module, use 'go install'.
          To install ignoring the current module, use 'go install' with a version,
          like 'go install example.com/cmd@latest'.
          For more information, see https://golang.org/doc/go-get-install-deprecation
          or run 'go help get' or 'go help install'.

Signed-off-by: Davide Madrisan <[email protected]>
  • Loading branch information
madrisan committed Nov 27, 2021
1 parent 5d696a6 commit 76c354b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dev: prep
bootstrap:
@for tool in $(EXTERNAL_TOOLS) ; do \
echo "Installing/Updating $$tool" ; \
GO111MODULE=on go get -u $$tool; \
GO111MODULE=on go install $$tool; \
done

cover:
Expand Down

0 comments on commit 76c354b

Please sign in to comment.