From 598aa7c424246d6955bbadba7b42b895fe492e5c Mon Sep 17 00:00:00 2001 From: jdrst <75489664+jdrst@users.noreply.github.com> Date: Wed, 10 Aug 2022 03:47:04 +0200 Subject: [PATCH] adds xcopy param to recursively copy runtime folder (#3378) --- README.md | 4 ++-- book/src/install.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d3defc1cf..1e8a10e6f 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ config directory (for example `~/.config/helix/runtime` on Linux/macOS, or `%App | OS | Command | | -------------------- | -------------------------------------------- | -| Windows (cmd.exe) | `xcopy runtime %AppData%\helix\runtime` | -| Windows (PowerShell) | `xcopy runtime $Env:AppData\helix\runtime` | +| Windows (cmd.exe) | `xcopy /e runtime %AppData%\helix\runtime` | +| Windows (PowerShell) | `xcopy /e runtime $Env:AppData\helix\runtime` | | Linux/macOS | `ln -s $PWD/runtime ~/.config/helix/runtime` | This location can be overridden via the `HELIX_RUNTIME` environment variable. diff --git a/book/src/install.md b/book/src/install.md index ea46976f2..b3109dd96 100644 --- a/book/src/install.md +++ b/book/src/install.md @@ -67,8 +67,8 @@ via the `HELIX_RUNTIME` environment variable. | OS | command | |-------------------|-----------| -|windows(cmd.exe) |`xcopy runtime %AppData%/helix/runtime` | -|windows(powershell)|`xcopy runtime $Env:AppData\helix\runtime` | +|windows(cmd.exe) |`xcopy /e runtime %AppData%/helix/runtime` | +|windows(powershell)|`xcopy /e runtime $Env:AppData\helix\runtime` | |linux/macos |`ln -s $PWD/runtime ~/.config/helix/runtime`| ## Finishing up the installation