diff options
author | Jaeho Choi | 2023-02-05 19:31:20 +0000 |
---|---|---|
committer | GitHub | 2023-02-05 19:31:20 +0000 |
commit | 0eba0db4a012e9961cf0c5dddf0a4b73f95431b2 (patch) | |
tree | 3b91be1fcb4fdf69f1461fd33dfc34940f16193b /README.md | |
parent | b2e83f81e10089a0e81ce33c4beb51aefc29a62e (diff) |
docs: Fix PowerShell runtime linking command (#5822)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -72,8 +72,9 @@ elevated privileges - i.e. PowerShell or Cmd must be run as administrator. **PowerShell:** ```powershell -New-Item -ItemType SymbolicLink -Target "runtime" -Path "$Env:AppData\helix\runtime" +New-Item -ItemType Junction -Target "runtime" -Path "$Env:AppData\helix\runtime" ``` +Note: "runtime" must be absolute path to the runtime directory. **Cmd:** |