Skip to content

Commit a87f457

Browse files
authored
wix doesn't need to be added to path (#11)
1 parent 3118b20 commit a87f457

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ Update your path environment with `setx` (supposing you installed the tools in
4949
their default directories):
5050

5151
```powershell
52-
setx PATH ($(Get-ItemProperty -Path HKCU:\Environment -Name Path).Path + "$env:ProgramFiles\LLVM\bin;${env:ProgramFiles(x86)}\WiX Toolset v3.11\bin")
52+
setx PATH ($(Get-ItemProperty -Path HKCU:\Environment -Name Path).Path + `
53+
"$env:ProgramFiles\LLVM\bin")
5354
```
5455

5556
Check if `PATH` was set correctly:
@@ -58,7 +59,6 @@ Check if `PATH` was set correctly:
5859
Get-Command clang
5960
Get-Command cmake
6061
Get-Command ninja
61-
Get-Command candle
6262
```
6363

6464
You may need to restart your Windows session if you can't find `ninja` even

0 commit comments

Comments
 (0)