From 27cf7f87dba9022b1de999da291b58691dbc25a4 Mon Sep 17 00:00:00 2001 From: Anthony Nandaa Date: Fri, 27 Jan 2023 09:54:04 +0300 Subject: [PATCH] fix(docs): minor fix on the windows installation steps `*` was left out and therefore the `/bin` directory is also copied over, while the following commands assume the files are copied to `containerd` Signed-off-by: Anthony Nandaa --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index b339ce90b..6a945bac3 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -116,7 +116,7 @@ curl.exe -L https://github.com/containerd/containerd/releases/download/v$Version tar.exe xvf .\containerd-windows-amd64.tar.gz # Copy and configure -Copy-Item -Path ".\bin\" -Destination "$Env:ProgramFiles\containerd" -Recurse -Force +Copy-Item -Path ".\bin\*" -Destination "$Env:ProgramFiles\containerd" -Recurse -Force cd $Env:ProgramFiles\containerd\ .\containerd.exe config default | Out-File config.toml -Encoding ascii