Skip to content

Commit 0eba0db

Browse files
authored
docs: Fix PowerShell runtime linking command (#5822)
1 parent b2e83f8 commit 0eba0db

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,9 @@ elevated privileges - i.e. PowerShell or Cmd must be run as administrator.
7272
**PowerShell:**
7373

7474
```powershell
75-
New-Item -ItemType SymbolicLink -Target "runtime" -Path "$Env:AppData\helix\runtime"
75+
New-Item -ItemType Junction -Target "runtime" -Path "$Env:AppData\helix\runtime"
7676
```
77+
Note: "runtime" must be absolute path to the runtime directory.
7778

7879
**Cmd:**
7980

book/src/install.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,9 @@ elevated privileges - i.e. PowerShell or Cmd must be run as administrator.
123123
**PowerShell:**
124124

125125
```powershell
126-
New-Item -ItemType SymbolicLink -Target "runtime" -Path "$Env:AppData\helix\runtime"
126+
New-Item -ItemType Junction -Target "runtime" -Path "$Env:AppData\helix\runtime"
127127
```
128+
Note: "runtime" must be the absolute path to the runtime directory.
128129

129130
**Cmd:**
130131

0 commit comments

Comments
 (0)