mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-23 00:08:51 -05:00
Try to fix 32-bit MWS support
This commit is contained in:
parent
eff492c3ed
commit
1dd80333bf
@ -261,7 +261,8 @@
|
||||
|
||||
<target name="appx" depends="revision" description="Build Windows 10 package">
|
||||
<property name="appx.arch" value="x64" />
|
||||
<property name="dir.staging" location="${dir.dist}/appx" />
|
||||
|
||||
<property name="dir.staging" location="${dir.dist}/appx/${appx.arch}" />
|
||||
|
||||
<copy todir="${dir.staging}">
|
||||
<fileset dir="${dir.installer}/appx/${appx.arch}" includes="*.exe" />
|
||||
@ -278,7 +279,7 @@
|
||||
|
||||
<!-- copy files and resolve ant variables -->
|
||||
<copy-replace todir="${dir.staging}">
|
||||
<fileset dir="${dir.installer}/appx" includes="*.xml, *.ini" excludes="*.l4j.xml" />
|
||||
<fileset dir="${dir.installer}/appx" includes="*.xml, *.ini" />
|
||||
</copy-replace>
|
||||
|
||||
<!-- fetch latest JRE -->
|
||||
@ -289,7 +290,6 @@
|
||||
<fileset dir="${dir.staging}/jre" includes="**/*120*.dll" />
|
||||
</delete>
|
||||
|
||||
|
||||
<!-- package APPX -->
|
||||
<exec executable="makepri" dir="${dir.staging}" failonerror="yes">
|
||||
<arg line="createconfig /o /pv 10.0.0 /cf priconfig.xml /dq en-US" />
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
<Identity
|
||||
Name="@{microsoft.application.name}"
|
||||
ProcessorArchitecture="x64"
|
||||
ProcessorArchitecture="@{appx.arch}"
|
||||
Publisher="@{microsoft.application.publisher}"
|
||||
Version="@{application.version}.0"
|
||||
/>
|
||||
|
Loading…
Reference in New Issue
Block a user