diff --git a/docs/cri/crictl.md b/docs/cri/crictl.md index 8db9ed09e..986ce06f3 100644 --- a/docs/cri/crictl.md +++ b/docs/cri/crictl.md @@ -15,7 +15,7 @@ should have installed crictl for you. If not, get it from your release tarball. If you are a developer the current version of crictl is specified [here](/script/setup/critools-version). A helper command has been included to install the dependencies at the right version: ```console -$ make install.deps +$ make install-deps ``` * Note: The file named `/etc/crictl.yaml` is used to configure crictl so you don't have to repeatedly specify the runtime sock used to connect crictl diff --git a/integration/image_load_test.go b/integration/image_load_test.go index debf19566..32ee20c86 100644 --- a/integration/image_load_test.go +++ b/integration/image_load_test.go @@ -58,7 +58,7 @@ func TestImageLoad(t *testing.T) { t.Logf("load image in cri") ctr, err := exec.LookPath("ctr") - require.NoError(t, err, "ctr should be installed, make sure you've run `make install.deps`") + require.NoError(t, err, "ctr should be installed, make sure you've run `make install-deps`") output, err = exec.Command(ctr, "-address="+containerdEndpoint, "-n=k8s.io", "images", "import", tar).CombinedOutput() require.NoError(t, err, "output: %q", output)