Skip to content

Commit 2b28dd3

Browse files
committed
Fix wrong make target on documentation
Signed-off-by: Takumasa Sakao <sakataku7@gmail.com>
1 parent b6b8fac commit 2b28dd3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/cri/crictl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ should have installed crictl for you. If not, get it from your release tarball.
1515
If you are a developer the current version of crictl is specified [here](/script/setup/critools-version).
1616
A helper command has been included to install the dependencies at the right version:
1717
```console
18-
$ make install.deps
18+
$ make install-deps
1919
```
2020
* Note: The file named `/etc/crictl.yaml` is used to configure crictl
2121
so you don't have to repeatedly specify the runtime sock used to connect crictl

integration/image_load_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func TestImageLoad(t *testing.T) {
5858

5959
t.Logf("load image in cri")
6060
ctr, err := exec.LookPath("ctr")
61-
require.NoError(t, err, "ctr should be installed, make sure you've run `make install.deps`")
61+
require.NoError(t, err, "ctr should be installed, make sure you've run `make install-deps`")
6262
output, err = exec.Command(ctr, "-address="+containerdEndpoint,
6363
"-n=k8s.io", "images", "import", tar).CombinedOutput()
6464
require.NoError(t, err, "output: %q", output)

0 commit comments

Comments
 (0)