From 062fde6b1682238e9560dbeefeacb959b4a1ac1d Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Mon, 9 Oct 2023 22:26:50 +0200 Subject: [PATCH] Updating build script for newest pyinstaller version. --- scripts/build-wine.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build-wine.sh b/scripts/build-wine.sh index 7ff3394..53dd11c 100644 --- a/scripts/build-wine.sh +++ b/scripts/build-wine.sh @@ -21,10 +21,10 @@ DRIVEC="${WINEPREFIX:-$HOME/.wine}/drive_c" PYSIDE6PATH="${PYSIDE6PATH%$'\r'}" PYSIDE6PATH="${PYSIDE6PATH//\\/\/}" PYSIDE6PATH="${PYSIDE6PATH//C:/$DRIVEC}" -cp "$PYSIDE6PATH/Qt6ShaderTools.dll" dist/logarithmplotter/PySide6/ +cp "$PYSIDE6PATH/Qt6ShaderTools.dll" dist/logarithmplotter/_internal/PySide6/ # Remove QtWebEngine -rm dist/logarithmplotter/PySide6/Qt6WebEngineCore.dll +rm dist/logarithmplotter/_internal/PySide6/Qt6WebEngineCore.dll # Remove the QtQuick styles that are unused -rm -rf dist/logarithmplotter/PySide6/qml/QtQuick/Controls/{Imagine,Material,designer} +rm -rf dist/logarithmplotter/_internal/PySide6/qml/QtQuick/Controls/{Imagine,Material,designer}