From 1ceea810086fbbf8e2b1ad934f6002a960aae030 Mon Sep 17 00:00:00 2001 From: cryinkfly Date: Fri, 9 Aug 2024 16:07:58 +0200 Subject: [PATCH] Remove wrong function name --- files/setup/autodesk_fusion_installer_x86-64.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files/setup/autodesk_fusion_installer_x86-64.sh b/files/setup/autodesk_fusion_installer_x86-64.sh index 98fdd24..c66280f 100644 --- a/files/setup/autodesk_fusion_installer_x86-64.sh +++ b/files/setup/autodesk_fusion_installer_x86-64.sh @@ -278,7 +278,6 @@ function check_option() { check_and_install_wine wine_autodesk_fusion_install autodesk_fusion_patch_qt6webenginecore - wine_autodesk_fusion_check_extensions wine_autodesk_fusion_install_extensions autodesk_fusion_shortcuts_load autodesk_fusion_safe_logfile @@ -775,8 +774,10 @@ function autodesk_fusion_run_install_client { function autodesk_fusion_patch_qt6webenginecore { # Find the Qt6WebEngineCore.dll file in the Autodesk Fusion directory QT6_WEBENGINECORE=$(find "$SELECTED_DIRECTORY/wineprefixes/default" -name 'Qt6WebEngineCore.dll' -printf "%T+ %p\n" | sort -r 2>&1 | head -n 1 | sed -r 's/.+0000000000 (.+)/\1/') + echo -e "$(gettext "${YELLOW}The old Qt6WebEngineCore.dll file is located in the following directory: $QT6_WEBENGINECORE${NOCOLOR}")" # Backup the Qt6WebEngineCore.dll file cp "$QT6_WEBENGINECORE" "$QT6_WEBENGINECORE.bak" + echo -e "$(gettext "${GREEN}The Qt6WebEngineCore.dll file is backed up as Qt6WebEngineCore.dll.bak!${NOCOLOR}")" # Patch the Qt6WebEngineCore.dll file echo -e "$(gettext "${YELLOW}Patching the Qt6WebEngineCore.dll file for Autodesk Fusion ...${NOCOLOR}")" sleep 2