Skip to content

Commit

Permalink
Makefile: make install_provider depend on k8sprovider (#3152)
Browse files Browse the repository at this point in the history
The install_provider target will not be able to do anything without
building the k8s provider. Specify this dependency in the Makefile to
make this easier for developers.
  • Loading branch information
tgummerer authored Aug 7, 2024
1 parent 93b4649 commit f2bfcb7
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 @@ -117,7 +117,7 @@ lint::
pushd $$DIR > /dev/null; golangci-lint run -c ../.golangci.yml --timeout 10m; popd > /dev/null; \
done

install_provider::
install_provider:: k8sprovider
cp $(WORKING_DIR)/bin/${PROVIDER} ${GOPATH}/bin

install:: install_nodejs_sdk install_dotnet_sdk install_provider
Expand Down

0 comments on commit f2bfcb7

Please sign in to comment.