Skip to content

Commit

Permalink
build: ensure that MSI installer file name starts with hale-studio
Browse files Browse the repository at this point in the history
Until now, file names of the MSI installer hale»studio followed the pattern

    HALE-<version>-<language>-<arch>.msi

Change this to

    hale-studio-<version>-<language>-<arch>.msi

but do not change the file names of MSI installers for other products.
  • Loading branch information
florianesser committed Dec 9, 2024
1 parent aef6745 commit 429a37c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build/ant/build-msi.xml
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,12 @@
<arg value="${build}/${wxs.file.ui}.wixobj" />
</exec>

<copy tofile="${dist}/${buildId}-${version}-${tag.hyphen}${language}-${wix.arch}.msi"
<!-- If the buildId is HALE, use the prefix hale-studio -->
<condition property="msiPrefix" value="hale-studio" else="${buildId}">
<equals arg1="${buildId}" arg2="HALE" />
</condition>

<copy tofile="${dist}/${msiPrefix}-${version}-${tag.hyphen}${language}-${wix.arch}.msi"
file="${build}/${buildId}.msi" overwrite="yes" />
</target>

Expand Down

0 comments on commit 429a37c

Please sign in to comment.