From ed48e87a9703564783e5d83a65c848aaa215bf15 Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Mon, 24 Jan 2022 16:16:58 +0100 Subject: [PATCH] Fixing building scripts. --- build-macosx.sh | 2 +- build-windows.bat | 4 ++-- build-wine.sh | 2 +- package-linux.sh | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build-macosx.sh b/build-macosx.sh index 30a902d..08554ce 100755 --- a/build-macosx.sh +++ b/build-macosx.sh @@ -3,7 +3,7 @@ rm $(find . -name "*.qmlc") rm $(find . -name "*.pyc") python3 -m pip install -U pyinstaller -# Buiilding translations +# Building translations cd "LogarithmPlotter/i18n/" bash release.sh cd ../../ diff --git a/build-windows.bat b/build-windows.bat index 297d132..a29d291 100644 --- a/build-windows.bat +++ b/build-windows.bat @@ -1,9 +1,9 @@ rem Need pyinstaller >= 4.3, or there is an issue regarding the PATH of the building. python -m pip install -U pyinstaller>=4.3 -rem Buiilding translations +rem Building translations cd "LogarithmPlotter\i18n" -bash release.sh +cmd release.sh cd ..\.. pyinstaller --add-data "logplotter.svg;." --add-data "LogarithmPlotter/qml;qml" --add-data "LogarithmPlotter/i18n;i18n" --noconsole LogarithmPlotter/logarithmplotter.py --icon=win/logarithmplotter.ico -n logarithmplotter diff --git a/build-wine.sh b/build-wine.sh index 329dabb..bdbbe5a 100644 --- a/build-wine.sh +++ b/build-wine.sh @@ -4,7 +4,7 @@ rm $(find . -name "*.qmlc") rm $(find . -name "*.pyc") wine python -m pip install -U pyinstaller -# Buiilding translations +# Building translations cd "LogarithmPlotter/i18n/" bash release.sh cd ../../ diff --git a/package-linux.sh b/package-linux.sh index e5e4dd4..c01aa48 100755 --- a/package-linux.sh +++ b/package-linux.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Buiilding translations +# Building translations cd "LogarithmPlotter/i18n/" bash release.sh cd ../../