aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNotAgentBilly2022-09-05 13:42:17 +0000
committerGitHub2022-09-05 13:42:17 +0000
commitdf1ed0a5fd02cc89ccfa3bf0912848249bebae6d (patch)
tree87b896ce4c0508290f32a64498110e8e1de21429 /README.md
parentfb92d71d087e8e8f5c4b28acab9cfdd65857d4c1 (diff)
xcopy - assume destination is a directory (#3686)
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0d3dab4b..98ec7822 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 /e runtime %AppData%\helix\runtime` |
-| Windows (PowerShell) | `xcopy /e runtime $Env:AppData\helix\runtime` |
+| Windows (cmd.exe) | `xcopy /e /i runtime %AppData%\helix\runtime` |
+| Windows (PowerShell) | `xcopy /e /i 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.