Skip to content

Commit

Permalink
Fix wrong make target on documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Takumasa Sakao <sakataku7@gmail.com>
  • Loading branch information
sachaos committed Nov 22, 2021
1 parent b6b8fac commit 2b28dd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/cri/crictl.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion integration/image_load_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2b28dd3

Please sign in to comment.