From d187a70452b2ac8c94a1c2fa61f868a92aa8a580 Mon Sep 17 00:00:00 2001 From: janis Date: Wed, 7 Jun 2023 08:40:54 +0200 Subject: [PATCH] bugfix + better py for win install script --- frontend/src/upscalingHandler.js | 2 +- packaging/prepareWindowsPackaging.sh | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/upscalingHandler.js b/frontend/src/upscalingHandler.js index 544a7bb..3d78f51 100644 --- a/frontend/src/upscalingHandler.js +++ b/frontend/src/upscalingHandler.js @@ -26,7 +26,7 @@ class UpscalingHandler { if ( this.os === 'linux' ) { baseCommand = './smuL-cli'; } else if ( this.os === 'win32' ) { - baseCommand = 'smuL-cli'; + baseCommand = 'smuL-cli.exe'; } diff --git a/packaging/prepareWindowsPackaging.sh b/packaging/prepareWindowsPackaging.sh index 4ae24dd..477ab6e 100755 --- a/packaging/prepareWindowsPackaging.sh +++ b/packaging/prepareWindowsPackaging.sh @@ -2,4 +2,6 @@ curl -o ./pythonInstaller.exe https://www.python.org/ftp/python/3.10.11/python-3 wine pythonInstaller.exe -wine python -m pip install pyinstaller \ No newline at end of file +wine python -m pip install pyinstaller + +printf '\n\n==> Done installing python for windows\n\n' \ No newline at end of file