1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 06:23:04 +01:00

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

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;