Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

Changes Windows build script to use WiX3.7 #351

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions installer/win/brackets-win-install-build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
default="build.mul">

<!-- Key locations on disk -->
<property name="wix.base" value="C:\Program Files (x86)\Windows Installer XML v3.5"/>
<property name="wix.base" value="C:\Program Files (x86)\WiX Toolset v3.7"/>

<property name="brackets.staging" value=".\staging"/>

Expand All @@ -23,7 +23,7 @@ default="build.mul">
<property name="heat.cmd" value="${wix.base}/bin/heat.exe"/>
<property name="candle.cmd" value="${wix.base}/bin/candle.exe"/>
<property name="light.cmd" value="${wix.base}/bin/light.exe"/>
<property name="msitran.cmd" value="${wix.base}/bin/MsiTran.exe"/>
<property name="torch.cmd" value="${wix.base}/bin/torch.exe"/>
<property name="wisubstg.cmd" value="${wix.base}/bin/WiSubStg.vbs"/>


Expand Down Expand Up @@ -140,8 +140,8 @@ default="build.mul">

<!-- to build a single msi for english and french -->
<target name="build.mul" depends="build.english, build.french" description="Build the final multi-locale MSI">
<exec executable='"${msitran.cmd}"' failonerror='true'>
<arg line="-g '${product.fullname} ${product.version.name}.msi' brackets_fr-fr.msi fr-fr.mst"/>
<exec executable='"${torch.cmd}"' failonerror='true'>
<arg line="-p -t language '${product.fullname} ${product.version.name}.msi' brackets_fr-fr.msi -out fr-fr.mst"/>
</exec>

<exec executable="cscript" failonerror='true'>
Expand Down