From 0aaeeffff7cfcbfb22653f8b63b282940a2add78 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 26 Mar 2023 11:22:50 +0200 Subject: [PATCH] build: Fixed capitalization of ImHex in MSI installer --- .github/workflows/build.yml | 2 +- cmake/build_helpers.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d99ccc60..8bd379765 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,7 +84,7 @@ jobs: .. mingw32-make -j4 install cpack - mv imhex-*.msi ../imhex-${{env.IMHEX_VERSION}}-Windows-x86_64.msi + mv ImHex-*.msi ../imhex-${{env.IMHEX_VERSION}}-Windows-x86_64.msi echo "ImHex checks for the existence of this file to determine if it is running in portable mode. You should not delete this file" > $PWD/install/PORTABLE diff --git a/cmake/build_helpers.cmake b/cmake/build_helpers.cmake index fc1efbf2e..0227511b0 100644 --- a/cmake/build_helpers.cmake +++ b/cmake/build_helpers.cmake @@ -122,7 +122,7 @@ macro(configurePackingResources) if (CREATE_PACKAGE) set(CPACK_GENERATOR "WIX") - set(CPACK_PACKAGE_NAME "imhex") + set(CPACK_PACKAGE_NAME "ImHex") set(CPACK_PACKAGE_VENDOR "WerWolv") set(CPACK_WIX_UPGRADE_GUID "05000E99-9659-42FD-A1CF-05C554B39285") set(CPACK_WIX_PRODUCT_ICON "${PROJECT_SOURCE_DIR}/resources/dist/windows/icon.ico")