Commit 05b1b96c authored by Ian Craggs's avatar Ian Craggs

Fix Windows zip file name

parent efd08bd5
...@@ -181,7 +181,7 @@ ...@@ -181,7 +181,7 @@
</copy> </copy>
<mkdir dir="${output.folder}/lib"/> <mkdir dir="${output.folder}/lib"/>
<move overwrite="true" todir="${output.folder}/lib"> <move overwrite="true" todir="${output.folder}/lib">
<fileset dir="${output.folder}" includes="libpaho*"/> <fileset dir="${output.folder}" includes="*libpaho*"/>
</move> </move>
<mkdir dir="${output.folder}/bin"/> <mkdir dir="${output.folder}/bin"/>
<move overwrite="true" todir="${output.folder}/bin"> <move overwrite="true" todir="${output.folder}/bin">
...@@ -200,7 +200,7 @@ ...@@ -200,7 +200,7 @@
<then> <then>
<exec executable="c:\cygwin\bin\zip.exe" failonerror="true" dir="${output.folder}"> <exec executable="c:\cygwin\bin\zip.exe" failonerror="true" dir="${output.folder}">
<arg value="-r"/> <arg value="-r"/>
<arg value="eclipse-paho-mqtt-c-unix-incubation-${release.version}"/> <arg value="eclipse-paho-mqtt-c-unix-incubation-${release.version}.zip"/>
<arg value="about.html"/> <arg value="about.html"/>
<arg value="notice.html"/> <arg value="notice.html"/>
<arg value="README.md"/> <arg value="README.md"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment