From ef6b91947ec6dc087cd5c8c370be634485e9ab39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?VERNOU=20C=C3=A9dric?= <1659796+vernou@users.noreply.github.com> Date: Sat, 2 Sep 2023 13:19:50 +0200 Subject: [PATCH] fix(docs): fix on the windows installation script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Modify the parameter `-Path` to reference a folder, so `Copy-Item` create the destination folder. Remove "-Container:$false" that flatten the hierarchy folder. Signed-off-by: VERNOU Cédric <1659796+vernou@users.noreply.github.com> --- 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 cbf5165c9..af5df0732 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 -Container:$false -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