From 5d58150e038a496605a56de53508ac12e4f81293 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 31 May 2016 23:14:20 +0200 Subject: [PATCH] Fixed package location in script. --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index bb8878164..856abb4bc 100644 --- a/build.ps1 +++ b/build.ps1 @@ -235,7 +235,7 @@ Function PackageDbgSymbolsZip { # This function creates the installer Function PackageInstaller { $setupOutput = "$(get-location)\setup" - $innoSetup = "$(get-location)\greenshot\packages\Tools.InnoSetup.5.5.9\tools\ISCC.exe" + $innoSetup = "$(get-location)\packages\Tools.InnoSetup.5.5.9\tools\ISCC.exe" $innoSetupFile = "$(get-location)\greenshot\releases\innosetup\setup.iss" Write-Host "Starting $innoSetup $innoSetupFile" $setupResult = Start-Process -wait -PassThru "$innoSetup" -ArgumentList "$innoSetupFile" -NoNewWindow -RedirectStandardOutput "$setupOutput.log" -RedirectStandardError "$setupOutput.error"