Skip to content

Commit

Permalink
AppVeyor: add Wix to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Jan 30, 2018
1 parent 76166af commit 52a6408
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ install:
- ps: Install-Product node $env:nodejs_version $env:platform
- set PATH=%APPDATA%\npm;%PATH%
- yarn
- ps: |
$wixToolsetBinPath = ";C:\Program Files (x86)\WiX Toolset v3.11\bin;"
$env:PATH = $env:PATH + $wixToolsetBinPath
[Environment]::SetEnvironmentVariable("Path", $env:PATH, [EnvironmentVariableTarget]::Machine)
if ((Get-Command "light.exe" -ErrorAction SilentlyContinue) -eq $null)
{
Write-Host "Unable to find light.exe in your PATH"
}
test_script:
- node --version
Expand Down

0 comments on commit 52a6408

Please sign in to comment.