Skip to content

Commit

Permalink
jsign: Handle spaces in build directory
Browse files Browse the repository at this point in the history
Closes qzind#1122
  • Loading branch information
tresf committed Apr 28, 2023
1 parent 2afb609 commit c26b7db
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ant/windows/installer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
<include name="**/*.dll"/>
<include name="**/*.exe"/>
</fileset>
<pathconvert pathsep=" " property="win.sign.separated" refid="win.sign.found"/>
<!-- Place double quotes between files (sign-win adds surrounding quotes) -->
<pathconvert pathsep="&quot; &quot;" property="win.sign.separated" refid="win.sign.found"/>
<antcall target="sign-win">
<param name="sign.win.file" value="${win.sign.separated}"/>
</antcall>
Expand Down Expand Up @@ -149,7 +150,7 @@
<arg value="${signing.keypass}"/>
<arg value="--tsaurl"/>
<arg value="${signing.tsaurl}"/>
<arg line="${sign.win.file}"/>
<arg line="&quot;${sign.win.file}&quot;"/>
</java>
</target>

Expand All @@ -171,7 +172,7 @@
<arg value="${signing.storepass}"/>
<arg value="--keypass"/>
<arg value="${signing.keypass}"/>
<arg line="${sign.win.file}"/>
<arg line="&quot;${sign.win.file}&quot;"/>
</java>
</target>
</project>

0 comments on commit c26b7db

Please sign in to comment.