Merge pull request #1360 from mzmiric5/patch_dist-installer-build

allow the dist installer build to be called from a relative path
This commit is contained in:
Ted John 2015-06-16 15:25:11 +01:00
commit c06476dfac
1 changed files with 2 additions and 1 deletions

View File

@ -1,2 +1,3 @@
$path = Split-Path $Script:MyInvocation.MyCommand.Path
Write-Output "Building Windows Installer (NSIS script)";
makensis /DVERSION_INCLUDE=win32.txt install.nsi > win32.log;
makensis /DVERSION_INCLUDE=$path\win32.txt $path\install.nsi > $path\win32.log;