From 509b685d16da53cab7f29ac1b23036f582bd40af Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 8 Sep 2018 00:22:35 +0100 Subject: [PATCH] Explicitly include the zip extension. This fixes the windows packaging failing when using tags that contain a "." --- packaging/windows/buildpackage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/windows/buildpackage.sh b/packaging/windows/buildpackage.sh index 246e200..44ec550 100755 --- a/packaging/windows/buildpackage.sh +++ b/packaging/windows/buildpackage.sh @@ -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