From 2ee4175437bbfcddf98e5eacba9b019113716ac8 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Wed, 1 May 2024 19:34:25 +0200 Subject: Remove electron entirely (#2859) Co-authored-by: rejbasket --- bin/build-python | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/build-python') diff --git a/bin/build-python b/bin/build-python index cd3e84a2..e6fcf667 100755 --- a/bin/build-python +++ b/bin/build-python @@ -17,7 +17,7 @@ pyinstaller_args+="--log-level DEBUG " # This adds bundle identifier in reverse DSN format for macos if [ "$BUILD" = "osx" ]; then pyinstaller_args+="--osx-bundle-identifier org.inkstitch.app " - pyinstaller_args+="-i electron/build/icons/mac/inkstitch.icns " + pyinstaller_args+="-i images/inkstitch/mac/inkstitch.icns " if [[ -z ${GITHUB_REF} ]]; then echo "Dev or Local Build" else @@ -43,11 +43,11 @@ if [ "$BUILD" = "windows" ]; then done; sed -i'' 's/3, 2, 1,/'"${INFO_VERSION[0]}, ${INFO_VERSION[1]}, ${INFO_VERSION[2]},"'/' installer_scripts/file_version_info.txt fi - # set year and version in version_info + # set year and version in version_info sed -i'' 's/1.1.1/'"${VERSION#v}"'/' installer_scripts/file_version_info.txt sed -i'' 's/1234/'"${info_year}"'/' installer_scripts/file_version_info.txt - # sets icon to inkstitch.exe - pyinstaller_args+="--i electron/build/icons/win/inkstitch.ico " + # sets icon to inkstitch.exe + pyinstaller_args+="-i images/inkstitch/win/inkstitch.ico " pyinstaller_args+="--version-file installer_scripts/file_version_info.txt " python -m PyInstaller $pyinstaller_args inkstitch.py elif [ "$BUILD" = "osx" ]; then -- cgit v1.2.3