Explicitly include the zip extension.

This fixes the windows packaging failing
when using tags that contain a "."
This commit is contained in:
Paul Chote 2018-09-08 00:22:35 +01:00 committed by abcdefg30
parent e0bb7af75e
commit 509b685d16

View File

@ -112,7 +112,7 @@ popd > /dev/null
echo "Packaging zip archive"
pushd "${BUILTDIR}" > /dev/null
find "${SRC_DIR}/thirdparty/download/windows/" -name '*.dll' -exec cp '{}' '.' ';'
zip "${PACKAGING_INSTALLER_NAME}-${TAG}-winportable" -r -9 * --quiet
zip "${PACKAGING_INSTALLER_NAME}-${TAG}-winportable.zip" -r -9 * --quiet
mv "${PACKAGING_INSTALLER_NAME}-${TAG}-winportable.zip" "${OUTPUTDIR}"
popd > /dev/null