Closed marckhouzam closed 2 months ago
Hi @marckhouzam. Thanks for your PR.
I'm waiting for a kcp-dev member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test
on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.
Once the patch is verified, the new status will be reflected by the ok-to-test
label.
I understand the commands that are listed here.
/ok-to-test
/lgtm /approve
LGTM label has been added.
[APPROVALNOTIFIER] This PR is APPROVED
This pull-request has been approved by: mjudeikis
The full list of commands accepted by this bot can be found here.
The pull request process is described here
Summary
Now that plugins have their own go module, the Makefile must change to that module's directory before running go commands on that module. Currently,
make install
does not do this and therefore plugins don't get installed as expected.This PR updates
make install
following the pattern ofmake build
to fix this.Before this PR, notice the last line
go: warning: "github.com/kcp-dev/kcp/cli/cmd/..." matched no packages
, and the plugins don't get installed in$GOPATH/bin
:With this PR the plugins (as well as the other binaries) get properly installed in
$GOPATH/bin
:Related issue(s)
Fixes # N/A
Release Notes