Skip to content

Commit

Permalink
[skip ci] building setup using Inno Setup 6
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Jul 3, 2020
1 parent b4139bd commit 25f3e84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ Write-Host "Version: " $version

Write-Host "Building setup using Inno Setup Compiler"
if ($ENV:PROCESSOR_ARCHITECTURE -eq "AMD64"){
$iscc = get-item "C:\Program Files (x86)\Inno Setup 5\ISCC.exe"
$iscc = get-item "C:\Program Files (x86)\Inno Setup 6\ISCC.exe"
}
else {
$iscc = get-item "C:\Program Files\Inno Setup 5\ISCC.exe"
$iscc = get-item "C:\Program Files\Inno Setup 6\ISCC.exe"
}
& $iscc /dAppVersion=$version ".\installer\pandoc-plot-setup.iss"

0 comments on commit 25f3e84

Please sign in to comment.